//(c) 2008 Massimo Magnano

adImages = new Array("img/Foto/small/dsc_0042.jpg","img/Foto/small/dsc_0052.jpg","img/Foto/small/dsc_0053.jpg","img/Foto/small/dsc_0057.jpg");      //Immagine Piccola
adImagesLinks = new Array("img/Foto/big/dsc_0042.jpg","img/Foto/big/dsc_0052.jpg","img/Foto/big/dsc_0053.jpg","img/Foto/big/dsc_0057.jpg"); //Immagine Grande (link relativi all' HTML)
ImagesTimeout = 5 * 1000;

imgCount = adImages.length
prima = true

function rotazioneBanner() {
    if (document.images) {
        if (prima) {
            imgIndice = Math.floor((Math.random() * imgCount)) //scegli il primo casualmente
            prima = false
        }
        else {
            imgIndice++
            if (imgIndice == imgCount) {
                imgIndice = 0
            }
        }
        document.banner.src=adImages[imgIndice]
        document.getElementById("banner_link").href=adImagesLinks[imgIndice]
        setTimeout("rotazioneBanner()", ImagesTimeout)
    }
 }
 
function addLoadEvent(func) {
  if (!document.getElementById | !document.getElementsByTagName) return
  var oldonload = window.onload
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload()
      func()
    }
  }
}

addLoadEvent(rotazioneBanner)
