/* Change the number of images you wish to rotate in this line */
var how_many_ads = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
/* Number and list the complete url of each image to rotate and include size */
ad +=1;
if (ad==1) {
txt="";
url="";
alt="";
banner="http://click2gulfcoast.com/images/main_img_1.jpg";
width="778";
height="144";
}
if (ad==2) {
txt="";
url="";
alt="";
banner="http://click2gulfcoast.com/images/main_img_2.jpg";
width="778";
height="144";
}
if (ad==3) {
txt="";
url="";
alt="";
banner="http://click2gulfcoast.com/images/main_img_3.jpg";
width="778";
height="144";
}

if (ad==4) {
txt="";
url="";
alt="";
banner="http://click2gulfcoast.com/images/main_img_4.jpg";
width="778";
height="144";
}

if (ad==5) {
txt="";
url="";
alt="";
banner="http://click2gulfcoast.com/images/main_img_5.jpg";
width="778";
height="144";
}

/*End Editable Area*/

document.write('<center>');
document.write('<a class=mainbody href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>');


