if (document.images)
{
    adImages = new Array("_dx_index/index_2010_01.jpg",
                "_dx_index/index_2010_02.jpg", "_dx_index/index_2010_03.jpg", "_dx_index/index_2010_04.jpg");
    adURLs = new Array("www.tanexpo.com",
                "www.tanexpo.com", "www.tanexpo.com", "www.tanexpo.com");
    thisAd = 0;
}

function rotazioneImg()
{
    if (document.images)
    {
        if (document.Rotazione.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;

            document.Rotazione.src = adImages[thisAd];
        }
    }

    // cambia allo sponsor successivo ogni 3 secondi
    setTimeout("rotazioneImg()", 5000);
}

function gotoAd()
{
    document.location.href = "http://" + adURLs[thisAd];
}

