function losowe_fotki() {
if(c)
{
		jQuery.ajax({
			   type: "GET",
			   url: "modol/losowe_fotki.php",
			   dataType:"html",
			   cache: false,
			   success: function(data){
				jQuery("div.losowe_fotki").hide();   
				jQuery("div.losowe_fotki").html(data);
				jQuery("div.losowe_fotki").fadeIn(1500);
			   }
 		}); 
};	
 		setTimeout("losowe_fotki()",12000);
 		};

 
$('document').ready(function(){
c=true;
$('div.losowe_fotki').hover(function(){c=false;},function(){c=true;});
losowe_fotki();

});