// JavaScript Document
// change number of ads below
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
// following 5 lines should be duplicated for additional images
if (ad==1) {
banner="images/quote1.gif";
width="450";
height="60";
}
if (ad==2) {
banner="images/quote2.gif";
width="450";
height="60";
}
if (ad==3) {
banner="images/quote3.gif";
width="450";
height="60";
}

document.write('<td width="85%">');
document.write('<img src="' + banner + '" width=')
document.write(width + ' height=' + height + '>');
document.write('</td>');