<!--
	//ID xxx
        //var pics = new Array();
		var idAtt=4;
		
		 //Attivazione Timer
		 function attTimer() {
			 timerID = setInterval('changeVis()', 6000);
		 }

		//Funzione che identifica l'elemento DOM
		function getElement(id) {
		  if (document.getElementById) {return (document.getElementById(id));}
		  else if (document.all) {return(document.all[id]);}
		  else { return null; }
		}
		
		//Funzione di cambio visualizzazione
		function changeVis() {
		   var objSelectedId;
           var idx;
		   if (idAtt == 4){idx = 1} else {idx = idAtt + 1};
		   for (i=1; i<5; i++) {
		   	   objSelectedId = getElement('p' + i);
			   //alert("i=" + i + " idx=" + idx + " obj=" + objSelectedId);
			   if (i==idx) {objSelectedId.style.display = "block";}else{objSelectedId.style.display = "none";}
		   }
		   idAtt = idx;
        }
		
		function rip(n) {
			if (n==0) {clearInterval(timerID);} else if (n==1) {attTimer();}
		}

//-->
