//var loading_img = "spinner.gif"; 
$(document).ready(function() {	
	//imgLoader = new Image();
	// preload image    
	//imgLoader.src = loading_img;	
	$("div.thumbnail").children("a").each(function() {		
		var img_url = $(this).attr("href");		
		var img = new Image();		
		img.src = img_url;	
	});	
	$("div.thumbnail").click(function() {		
		//$("div#").html("<img src='"+imgLoader.src+"' />");		
		//$("div#intro").show();		
		img_url =  $("a",this).attr("href");		
		$("div#fotogra").html("<img src='"+img_url+"' class=\"fotopic\" />").fadeIn(1500);		
		return false;	
	});
});
