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