function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
var ads = new adArray(
"images/quotations/01.jpg",
"images/quotations/02.jpg",
"images/quotations/03.jpg",
"images/quotations/04.jpg",
"images/quotations/05.jpg",
"images/quotations/06.jpg",
"images/quotations/07.jpg");
var ad_num = getAdNum(); 
document.write('<CENTER><TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0><TR><TD '
+'</FONT></TD><TR></TR><TD><A><IMG SRC="'+ads[ad_num].src+'" '
+'WIDTH="332" HEIGHT="128" BORDER=0 name=js_ad></A></TD></TR></TABLE></CENTER>');
link_num = document.links.length-1;
function rotateSponsor1() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  setTimeout("rotateSponsor1()",5000);
 }
}
setTimeout("rotateSponsor1()",5000);
