// 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(
"/images/sponsors/atrainmarketing.jpg", "http://www.atrainmarketing.com/",
"/images/sponsors/lovebug.jpg", "http://www.lovebugcolorado.com/",
"/images/sponsors/carbonfund.jpg", "http://www.coloradocarbonfund.org/",
"/images/sponsors/citizen.jpg", "http://www.citizensprinting.com/",
"/images/sponsors/CofFClogo.jpg", "http://fcgov.com",
"/images/sponsors/NBlogo.jpg", "http://newbelgium.com",
"/images/sponsors/jax75.jpg", "http://www.jaxmercantile.com/",
"/images/sponsors/onetribe.jpg", "http://onetribecreative.com",
"/images/sponsors/kunc.jpg", "http://www.kunc.org/",
"/images/sponsors/krfc.jpg", "http://krfcfm.org",
"/images/sponsors/rm-parent.jpg", "http://rmparentmagazine.com",
"/images/sponsors/COProud.gif", "http://coloradoproud.org",
"/images/sponsors/gallegos.jpg", "http://www.gallegossanitation.com/",
"/images/sponsors/cachebank.jpg", "http://www.cachebankandtrust.com/",
"/images/sponsors/wolfmoonfarms.jpg", "http://www.wolfmoonfarms.com/",
"/images/sponsors/ranch-way.jpg", "http://ranch-way.com",
"/images/sponsors/motherlove.jpg", "http://motherlove.com",
"/images/sponsors/lightcenter.jpg", "http://www.lightcenterinc.com/",
"/images/sponsors/poudre-pet-feed.jpg", "http://www.poudrefeed.com",
"/images/sponsors/waste-not.jpg", "http://www.waste-not.com/",
"/images/sponsors/generalcare.jpg", "http://www.generalcare.com/",
"/images/sponsors/larimercounty.jpg", "http://www.co.larimer.co.us/",
"/images/sponsors/dda.jpg", "http://www.downtownfortcollins.org/",
"/images/sponsors/clothes-pony.jpg", "http://www.clothespony.com/",
"/images/sponsors/csu.jpg", "http://www.colostate.edu/",
"/images/sponsors/xplore.jpg", "http://www.xplore-design.com",
"/images/sponsors/paw-pages.jpg", "http://www.coloradopawpages.com/magazine",
"/images/sponsors/rmsla.jpg", "http://sustainablelivingassociation.org"
);
var ad_num = getAdNum(); 
document.write('<a target="_blank" HREF="'+ads[ad_num].href+'"><IMG SRC="'+ads[ad_num].src+'" '
+'BORDER=0 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()",2500);
 }
}
setTimeout("rotateSponsor()",2500);
// -->