$(document).ready(function(){

	//$(".gallery h3").append('<em></em>')

		$("#mycarousel a").click(function(){
		
		var largePath = "classes/crop_image.php?image=../uploaded_files/" + $(this).attr("href") + "&max_height=310&max_width=327&ddborder=0&addf=1";
		
		var largeAlt = $(this).attr("title");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
			
		$("#largelink").attr({ href: "uploaded_files/" + $(this).attr("href") });
	
		//$("h3 em").html(" (" + largeAlt + ")"); 
		return false;
	});

});