if (document.images)
{
    adImages = new Array("banners/banner_1.jpg","banners/75taxi.jpg","banners/banner_3.jpg","banners/photos.jpg","banners/fdn.jpg");
    adURLs = new Array("www.vinesbar.com/sell.html","www.75taxis.com","www.vinesbar.com/sell.html","www.redstream.co.uk/photo/index.html","www.fancydressnation.co.uk");
    thisAd = 0;
}

function cycleAds()
{
    if (document.images)
    {
        if (document.adBanner.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;
                document.adBanner.src = adImages[thisAd];
        }
    }

    // change to next banner every 15 seconds
    setTimeout("cycleAds()", 4300);
}

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