
function banner(url, img_src){
this.url = url;
this.img_src = img_src;
}

var bannerList = new Array();


bannerList.push(new banner("http://pfizergold.com", "../images/footer/pfizer2006.gif"));
bannerList.push(new banner("http://www.porterandmacleanlivestock.com", "../images/footer/pm_1.gif"));
bannerList.push(new banner("http://www.bclivestock.bc.ca", "../images/footer/bclivestock.gif"));
bannerList.push(new banner("http://www.hereford.ca", "../images/footer/2009banner.GIF"));
bannerList.push(new banner("http://www.albertaprimebeef.com", "../images/footer/apb.gif"));
bannerList.push(new banner("http://www.calgarystockyards.com", "../images/footer/calgarystockyards_revised.gif"));
bannerList.push(new banner("http://www.sekuraauctions.com", "../images/footer/sekura.gif"));
bannerList.push(new banner("http://www.robergetransport.com/", "../images/footer/roberge.gif"));
bannerList.push(new banner("http://www.deaglecattleco.com/", "../images/footer/maine_bull_sale.gif"));
bannerList.push(new banner("http://www.spiritwoodstockyards.com", "../images/footer/Spiritwood Stockyards.bmp"));
bannerList.push(new banner("http://vaneelivestockltd.ca", "../images/footer/Vanee_banner3.jpg"));
bannerList.push(new banner("", "../images/footer/draxxin.gif"));
bannerList.push(new banner("http://www.hartfordlivestock.com/livestock/canoffices.html", "../images/footer/Hartford-Revised.gif"));
bannerList.push(new banner("http://www.kaisercelticcattle.com/", "../images/footer/Kaisers-Celtic-Cattle3.gif"));
bannerList.push(new banner("http://www.canadaid.com/", "../images/footer/CCIA.gif"));
//bannerList.push(new banner("http://www.cdnangus.ca/", "../images/footer/CAA-Banner.gif"));
bannerList.push(new banner("http://ufa.com/beef/index.html", "../images/footer/UFA_TEAM_banner.jpg"));
bannerList.push(new banner("http://www.drylandcattle.com", "../images/footer/dryland_slideshow.gif"));
bannerList.push(new banner("http://www.rawesranches.com", "../images/footer/RawesRanches_rs.jpg"));

var randomBanner = Math.floor((Math.random()* bannerList.length));


document.write("<a target=\"_blank\" href=\""+bannerList[randomBanner].url+"\"><img src=\""+bannerList[randomBanner].img_src+"\" width=\"468\" height=\"60\" border=\"0\"><\a>");


