var testate=new Array(Array('1.jpg','http://www.annunciferrara.it'),Array('2.jpg','http://www.annuncibologna.it'),Array('3.jpg','http://www.annunciroma.com'),Array('4.jpg','http://www.annuncipisa.it'),Array('5.jpg','http://www.annuncimilano.it'),Array('6.jpg','http://www.annuncigenova.it'),Array('7.jpg','http://www.annuncinapoli.it'));
var contatore=0;

function ruotaTestate(){
  contatore++;
    if (contatore>=testate.length){
      contatore=0;
    }
    if (document.getElementById("imgtestata")) {
      document.getElementById("imgtestata").src='testate/'+testate[contatore][0];
      document.getElementById("linktestata").href=testate[contatore][1];
    }
  setTimeout("ruotaTestate()",4000);
}
