<!--
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
url="index.html";
alt="SunLoan.com"
banner="images/main.jpg";
}
if (ad==2) {
url="index.html";
alt="SunLoan.com"
banner="images/main2.jpg";
}

if (ad==3) {
url="index.html";
alt="SunLoan.com"
banner="images/main3.jpg";
}
document.write( "<IMG SRC=" + banner + " ALT="+ alt +" width=313 height=397>" );
//-->