
	var preLoadd = new Array()
	for (var ii = 0; ii < Picc.length; ii++){
	   preLoadd[ii] = new Image()
	   preLoadd[ii].src =  "/rcrs/r_pag/1/home0"+ (ii+1) +".jpg";
	}

	function runSlideShowHome(tiempo,id_imagen,contador){
	   if (document.all){
	   	  document.getElementById(id_imagen).style.filter="blendTrans(duration=1)"
	      document.getElementById(id_imagen).filters.blendTrans.Apply()      
	   }
	   
	   document.getElementById(id_imagen).src = preLoadd[contador].src
	   
	   if (document.all){
			document.getElementById(id_imagen).filters.blendTrans.Play()
	   }

	   document.getElementById('linkHome').href = Picc[contador];
	  // alert(document.getElementById('linkHome').href);
	   contador++;
	   if(contador >(Picc.length - 1)) contador=0;
	    	setTimeout('runSlideShowHome('+ tiempo +',"'+ id_imagen +'",'+ contador +')',tiempo);
	}
	
	setTimeout('runSlideShowHome(7000,"imghome",0)',10000);
	
