function replaceGalleryPhoto(photoSrc, photoAlt) {
//	if ($("#galleryPhoto").is(":animated")) $("#galleryPhoto").stop();
	if ($("#galleryPhoto").attr("src") == photoSrc.replace("/thumbnails/", "/photos/")) return;

	$("#galleryCaption").animate({top:"43"}, 1000);

	$("#galleryPhoto").fadeOut("normal", function () {
		$(this).attr("src", photoSrc.replace("/thumbnails/", "/photos/"));
		$("#galleryCaption").text(photoAlt).animate({top:"0"}, 1000);
	});
	
	return false;
}

$(document).ready(function(){
	$("#carousel").jcarousel();

	$("#galleryCaption").fadeTo("normal", 0.8, function () {
		$("#galleryCaption").animate({top:"0"}, 1000 );
	});

	$("#carousel img").hover(
		function(){$(this).fadeTo("normal", 0.7);},
		function(){$(this).fadeTo("normal", 1.0);}
	);

	$("#galleryPhoto").load(function () {$(this).fadeIn("normal");});
});
		
