if (document.images)
{
    adImages = new Array("images/right_banner/banner_fleetbox1.gif",
                         "images/right_banner/banner_fleetbox2.gif",
						 "images/right_banner/banner_fleetbox3.gif");

    adURLs = new Array("fleetbox-benefits.php",
						"company-profile-fleetsolutions-references.php",
						"#");
    thisAd = 0;
}

function cycleAds()
{
    if (document.images)
    {
        if (document.adBanner.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;
            document.adBanner.src = adImages[thisAd];
        }
    }
    setTimeout("cycleAds()", 4000);
}

function gotoAd()
{
    document.location.href = adURLs[thisAd];
}
