Yo hago eso mismo pero escribiendo siempre 
return false al final de las funciones click: 
 Cita:  $(".thumb2 a").click(function(){
        var imgHref = $(this).attr('title');  //get the src of the thumbnail
        $(".thumb2 a").removeClass("selected");  //remove .selected class from all other links
        $(this).addClass("selected");  //add .selected class to current link
        $(".big2").stop();
        $(".big2").stop().fadeTo(700, 0, function() {  //fade image out
            $('.big2').attr('src', imgHref );  //give new image a src attribute
            $('.bighref2').attr('href', 'big/' + imgHref );
 
        }).fadeTo("slow", 1);  //fade the image in
    },$(".thumb2 a").mouseout = function(){    //for onmouseout not used here
  return false;
 
    });