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