// Copyright 1996, Infohiway, Inc. (http://www.infohiway.com)
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
<!--
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(
"img/brooks-feeds.jpg","http://www.brooksfeeds.com",
"img/eventing-canada.jpg","http://www.eventingcanada.com",
"img/boyle.jpg","http://www.boyleexcavating.ca",
"img/drumorelogo.jpg","http://www.drumorefarms.com",
"img/cmswebsolutions.jpg","http://www.cmswebsolutions.com",
"img/goodcropserviceslogo.jpg","",
"img/heritage.jpg", "http://www.heritagegloves.com",
"img/antares.jpg", "http://www.antares-sellier.com",
"img/efo.jpg", "http://www.equestrianfactoryoutlet.com",
"img/haygain.jpg", "http://www.haygain.us",
"img/succeedlogo.jpg", "http://www.succeeddcp.com",
"img/bucas-logo.jpg", "http://www.bucas.com",
"img/omega.jpg", "http://www.omegaalpha.ca/",
"img/ecogold.jpg", "http://www.ecogold.ca/",
"img/xpress-foto.jpg","http://www.xpressfoto.com");
var ad_num = getAdNum(); 
document.write('<a href="'+ads[ad_num].href+'" class="no-border"><img src="'+ads[ad_num].src+'" alt="'+ads[ad_num].href+'" '
+'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()",3000);
 }
}
setTimeout("rotateSponsor()",3000);
// -->