var i = 1;
banner1= new Image();
banner1.src = "images/banners/newsaboutshopsevents.jpg";
banner2 = new Image();
banner2.src = "images/banners/postcards.jpg";
banner3 = new Image();
banner3.src = "images/banners/home_uniquegiftsuggestions.jpg";
banner4 = new Image();
banner4.src = "images/banners/postcards.jpg";

var links = new Array

links[1] = "news001.html"
links[2] = "postcards.html" 
links[3] = "shops/index.html"
links[4] = "postcards.html"

var description = new Array
description[1] = "Click here to see WHAT'S NEW!"
description[2] = "Click here to see POSTCARDS of the ELORA EXPERIENCE!"
description[3] = "Click here to see UNIQUE GIFT SUGGESTIONS!"
description[4] = "Click here to see POSTCARDS of the ELORA EXPERIENCE!"

function loadBanner(){

        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=5;	/* 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 < 4){
			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=""
}

