function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 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(
"/ads/tcoppola.gif","http://www.danfords.com",
//"/ads/mbeckBannerAd.gif","http://www.libertymutual.com/michaelbeck",					  
//"/ads/idk3.gif","http://www.idk3.com",
"/ads/joliePowell.jpg","http://jprealtor.com",

//"/ads/frankedwards.gif","http://www.danielgale.com/content/agentDetail.asp?agentID=2655",
//"/ads/printingplus.jpg","http://www.printingplusgraphicdesign.com",
//"/ads/evaandyou.gif","http://www.evaandyou.com",
//"/ads/dhbanner1.gif","http://www.dayhaven.org",
//"/ads/edbanner1.gif","http://www.earlydiscoveriescenter.com",
//"/ads/spare_advertising.jpg","http://www.spareadvertising.com",
//"/ads/hi-web-ad.jpg","http://www.stonybrookny.hiexpress.com",
//"/ads/gene_dicks.jpg","http://www.genedicks.com/",
//"/ads/melissapetsco.jpg","http://www.melissapetsco.com/",
"/ads/em_banner.jpg","http://www.extramedium.com",
"/ads/ad_sample.gif","contact_us.html");
var ad_num = getAdNum(); 
document.write('<a href="'+ads[ad_num].href+'" target="_blank"><img src="'+ads[ad_num].src+'" '+'width="175" height="125" border=1 name=js_ad></a>');
link_num = document.links.length-1;
function rotateSponsor() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotateSponsor()",5000);
 }
}
setTimeout("rotateSponsor()",5000);
