var i = 1;
banner1= new Image();
banner1.src = "http://myserviceandsupport.com/images/ads/dataGuard800x100.jpg";
banner2 = new Image();
banner2.src = "http://myserviceandsupport.com/images/ads/greentreedata.jpg"; //you may add as many as needed
banner3 = new Image();
banner3.src = "http://myserviceandsupport.com/images/ads/Laurentel.jpg";
banner4 = new Image();
banner4.src = "http://myserviceandsupport.com/images/ads/MWN800x100.jpg";
banner5 =new Image();
banner5.src = "http://myserviceandsupport.com/images/ads/myESL800x100.jpg";
banner6 = new Image();
banner6.src = "http://myserviceandsupport.com/images/ads/myteleservices.jpg";
banner7 = new Image();
banner7.src = "http://myserviceandsupport.com/images/ads/ontxt800x100.jpg";
banner8 = new Image();
banner8.src = "http://myserviceandsupport.com/images/ads/YBS.jpg";
links = new Array
links[1] = "http://www.impliedservices.com"
links[2] = "http://www.greentreedata.com" //be sure to ad numbers consecutively
links[3] = "http://www.laurentel.com"
links[4] = "http://www.mywirelessneeds.com"
links[5] = "http://www.myesl.com"
links[6] = "http://www.myteleservices.com"
links[7] = "http://www.ontxt.net"
links[8] = "http://www.yourbillingsolutions.com"
description = new Array
description[1] = "Implied Services"
description[2] = "GreenTreeData" //be sure to ad message numbers consecutively 
description[3] = "Laurentel"
description[4] = "Mywirelessneeds"
description[5] = "MyESL"
description[6] = "MyTeleservices"
description[7] = "Ontxt.Net"
description[8] = "Your Billing Solutions"
function startTime(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
closeTime=hours*3600+mins*60+secs;
closeTime+=15;	// 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 < 8){	// 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]
}
