//  var ad_cntl is the number of photos we are using
var ad_cnt1 = 4;
var now1 = new Date()
var sec1 = now1.getSeconds()
var ad1 = sec1 % ad_cnt1;
var banner1 = ""
ad1 +=1;
if (ad1==1) {
	banner1="/images/quotes/logo-quote1.gif";
}
else if(ad1==2) {
	banner1="/images/quotes/logo-quote2.gif";
}
else if(ad1==3) {
	banner1="/images/quotes/logo-quote3.gif";
}
else if(ad1==4) {
	banner1="/images/quotes/logo-quote4.gif";
}
else {
	banner1="/images/quotes/logo-quote1.gif";
}

document.write('<img src="' + banner1 + '" width="419" height="255" alt="random quotes">');
