var indice = 1;
var numfoto = 3;
var foto = new Array(numfoto);
foto[1] = "http://www.ilmeteo.it/portale/italy.png";
foto[2] = "http://www.ilmeteo.it/portale/italy_p.png";
foto[3] = "http://www.ilmeteo.it/portale/italy_s.png";
var tempo = setTimeout('Immagine()',5000);
function Immagine() {                           
 indice++;
 if(indice>numfoto) {
  indice=1;
 }
 if(indice==2){
 	document.getElementById('mattina').style.display="none";	
 	document.getElementById('pomeriggio').style.display="block";	
 	document.getElementById('sera').style.display="none";	
 }
 if(indice==1){
 	document.getElementById('mattina').style.display="block";	
 	document.getElementById('pomeriggio').style.display="none";	
 	document.getElementById('sera').style.display="none";	
 }
 if(indice==3){
 	document.getElementById('mattina').style.display="none";	
 	document.getElementById('pomeriggio').style.display="none";	
 	document.getElementById('sera').style.display="block";	
 }
 document.modulo.fotografia.src = foto[indice]; 
 tempo = setTimeout("Immagine()",5000);
}
