var i = 1;
banner1= new Image();
banner1.src = "art/work/pub_alads.jpg";
banner2 = new Image();
banner2.src = "art/work/pub_hvacr.jpg";
banner3= new Image();
banner3.src = "art/work/pub_clcv.jpg";
banner4= new Image();
banner4.src = "art/work/tbl_cover.jpg";
banner5= new Image();
banner5.src = "art/work/starnews.jpg";

links = new Array
links[1] = "pubalads_big.html"
links[2] = "pubhvacr_big.html"
links[3] = "pubclcv_big.html"
links[4] = "pubtbl_big.html"
links[5] = "starnews_big.html"

description = new Array
description[1] = "ALADS Dispatcher"
description[2] = "Western HVACR News"
description[3] = "California League of Conservation Voters Newsletter"
description[4] = "The Thin Blue Line"
description[5] = "Star News"


function startTime(){

        var time= new Date();
        hours= time.getHours();
        mins= time.getMinutes();
        secs= time.getSeconds();
        closeTime=hours*3600+mins*60+secs;
        closeTime+=2;	// How many seconds til the next rotation
        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 < 5){	// The number 5 is the amount of banners that you have
			i++;
			document.banner.src = eval("banner" + i + ".src");
		}
		else{
			i = 1;
			document.banner.src = eval("banner" + i + ".src");
		}
		startTime();
	}
        else{
                window.setTimeout("Timer()",1000)}

}

function clickLink(){
	top.location = links[i]
}

function descript(){
	window.status = description[i]
}

// -->
