var max = 2;    
/* HIERBOVEN maximaal aantal roterende images invullen. 
DAARNA het aantal bij BANNER, LINKS en DESCRIPTION daarmee in overeenstemming brengen.*/

banner1 = new Image();
banner1.src = "http://www.triathlonweb.nl/twn/advertenties/banner0.gif";
banner2 = new Image();
banner2.src = "http://www.triathlonweb.nl/twn/advertenties/banner1.gif";

var links = new Array
links[1] ="http://www.triathlonweb.nl/twn/pass.php?ad=multipower"
links[2] ="http://www.triathlonweb.nl/twn/show.php?chapter=Service&ID=adverteren"

var description = new Array
description[1] = "Multipower Sportsfood. Ontdek het zelf en bestel een proefpakket!"
description[2] = "Adverteren op deze site? Klik hier!"
/*description[1] = "TriCamps 2006 at Hotel Atilius, Riccione"*/

var i = 1;

function loadBanner(){

        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=20;  /* Change this number to increase decrease the rotation speed */
        Timer();

}

function Timer(){
        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        curTime=hours*3600+mins*60+secs
        if (curTime>=closeTime){
        if (i < max){
            i++;
            document.banner.src = eval("banner" + i + ".src");
        }
        else{
            i = 1;
            document.banner.src = eval("banner" + i + ".src");
        }
        loadBanner();
    }
        else{
                window.setTimeout("Timer()",1000)}

}

function clickLink(){
    top.location = links[i]
}

function descript(){
    window.status = description[i]
}

function nothing() {
    window.status=""
}
