$(document).ready(function(){
	$("#thumbnail a").click(function(){
		$("#large img").hide().attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});
		$("#large p").html($("> img", this).attr("title"));
		$("#large h1").html($("> img", this).attr("alt"));
		return false;
	});
	$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")});
});