﻿// JavaScript Document

if (document.images)
{
    adImages = new Array("http://www.magicnobilje.com/baneri/akai-beri-novi.jpg",
                "http://www.magicnobilje.com/baneri/mangostin-5+1.jpg", "http://www.postantiqua.com/marketing/opcije_reklamiranja/primer3_baner160x300.gif");
    adURLs = new Array("www.magicnobilje-prodavnica.com/prodavnica_izlog.html",
                "www.magicnobilje-prodavnica.com/prodavnica_izlog.html", "www.magicnobilje.com/baneri.html");
    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];
}