
$(function(){
	$("#menu img").click(function(){
		$("#loading").remove();
		thumbURL = $(this).attr("src");
		imgURL = thumbURL.replace("/s_","/b_");
		var image = new Image();
		image.imgURL;
		/*$("#imgbox").append('<div id="loading" style="position:absolute;top:0;left:0;z-index:100;"><img src="./img/download.gif" /></div>');*/
		$("#bigimg").fadeOut(
				"slow",
				function() {
					$("#bigimg").attr("src", imgURL);
					$("#bigimg").load(function () {
						$("#bigimg").fadeIn(2000);
						$("#loading").animate({opacity:0}, 800, "linear");
					});
				}
		);
	});

});

