﻿// JavaScript Document

if (document.images)
{
    adImages = new Array("http://www.utisci.net/baner-ruze-i-vino.jpg",
                "http://www.magicnobilje.com/baneri/bilje-baner-728x90.jpg", "http://www.utisci.net/sajt-majstor-728.jpg");
    adURLs = new Array("#",
                "www.magicnobilje.com", "www.sajtmajstor.net");
    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 sponsor every 3 seconds
    setTimeout("cycleAds()", 3000);
}

function gotoAd()
{
    document.location.href = "http://" + adURLs[thisAd];
}
