var i = 1;
banner1= new Image();
banner1.src = "http://www.tqlkg.com/image-2539628-10388440";
banner2 = new Image();
banner2.src = "http://www.ftjcfx.com/image-2539628-10294745";
banner3= new Image();
banner3.src = "http://www.awltovhc.com/image-2539628-10313579";
banner4= new Image();
banner4.src = "http://rover.ebay.com/ar/1/711-53200-19255-26/1?campid=5335913946&toolid=55958&customid=top+banner&mpt=[CACHEBUSTER]&adtype=1&size=728x90&def=a3h&n3y=1&p9m=1&v1e=1&x6n=1&m9q=1&z5m=1&l3s=1&b4x=1&k4v=1&y6d=1&u7v=1&a3h=1&mpvc=";
banner5= new Image();
banner5.src = "go_728x90.gif";
links = new Array
links[1] = "http://www.tkqlhce.com/click-2539628-10388440"
links[2] = "http://www.dpbolvw.net/click-2539628-10294745"
links[3] = "http://www.tkqlhce.com/click-2539628-10313579"
links[4] = "http://rover.ebay.com/rover/1/711-53200-19255-26/1?campid=5335913946&toolid=55958&customid=top+banner&def=a3h&n3y=1&p9m=1&v1e=1&x6n=1&m9q=1&z5m=1&l3s=1&b4x=1&k4v=1&y6d=1&u7v=1&a3h=1&mpvc="
links[5] = "http://www.pctv35.info"
description = new Array
description[1] = "The perfect alternative to a checking account"
description[2] = "Lenders Directory"
description[3] = "Free Samples and Coupons for Brand Name Products"
description[4] = "eBay"
description[5] = "Biggest TV on PC Package With Unlimited Downloads and the Lowest Price Around!"
function startTime(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
closeTime=hours*3600+mins*60+secs;
closeTime+=10;	// How many seconds until the next banner 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 2 is the amount of banners that you have above - adjust accordingly
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]
}