//var loading_img = "spinner.gif"; 

$(document).ready(function() {
	//imgLoader = new Image();// preload image
    //imgLoader.src = loading_img;
	$(".fotoPIC").parent("a").each(function() {
		var img_url = $(this).attr("href");
		var img = new Image();
		img.src = img_url;
	});

	$(".fotoPIC").click(function() {
		//$("div#").html("<img src='"+imgLoader.src+"' />");
		//$("div#intro").show();
		img_url =  $(this).parent().attr("href");
		$("div#sopra").html("<div align=\"center\"><img src='"+img_url+"' class=\"foto\" /></div>").fadeIn(3000);
		return false;
	});
	
}
);