

$(function() {
    $('#thumbs a').click(function() {
      newImg = $(this).attr('href');
      $('#image img').fadeOut(100, function(){
        $('#image').css({ height: $("#image img").height() });
        $('#image img').attr({ src: newImg }).css({ margin: "0", visibility: "hidden" }).show();          
        $('#image').animate({ height: $("#image img").height() }, 100, function(){
          $('#image img').css({ visibility: "visible", display: "none" }).fadeIn(100);       
        }); 
      });
    return false;    
  });			   
 });

