 $(document).ready(function(){
 // efecte ombra
   $("div.top-interior h1").each(function (i) { $(this).textDropShadow(); }); 
   
   jQuery('.brcm-image a.brcm-view-image').lightbox();
      		
	activarTimer();
  
 });



function canviaImatge() {	
	$.get('../imatge-portada.php', null , function(imatge){
		$("#img-center").find("img.img").attr("src",'../imatges-home/'+imatge);
		activarTimer();
	});
}


function activarTimer() {
	setTimeout('canviaImatge()', 8000);
}

