$(document).ready(function(){
	$(".thumbnail li a").mouseover(function(){
		//jQuery('> img',this).animate({width:85, left:-5, top:-4 }, 350);
		$("#large img").hide().attr({"src": $(this).attr("rel"), "title": $("> img", this).attr("title")});
		$("#largeH2 h2 span").html($("> img", this).attr("title"));
		return false;
	});
	
	//$(".thumbnail li a").mouseout(function(){
	//	jQuery('> img',this).animate({width:76, left:0, top:0}, 350);
	//	return false;
	//});
	
	$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")});
	
	
	$(".thumbnail_catering li a").mouseover(function(){
		//jQuery('> img',this).animate({width:85, left:-5, top:-4 }, 350);
		$("#large_catering img").hide().attr({"src": $(this).attr("rel"), "title": $("> img", this).attr("title")});
		$("#largeH2_catering h2 span").html($("> img", this).attr("title"));
		return false;
	});
	//$(".thumbnail_catering li a").mouseout(function(){
	//	jQuery('> img',this).animate({width:76, left:0, top:0}, 350);
	//	return false;
	//});
	$("#large_catering>img").load(function(){$("#large_catering>img:hidden").fadeIn("slow")});
	
});