
<!--

/*
Random Image Link Script
*/

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="https://protected.bizland.com/threecountyfair/sponsors/fsb.jpg"
myimages[2]="https://protected.bizland.com/threecountyfair/sponsors/mapleline_farm.jpg"
myimages[3]="https://protected.bizland.com/threecountyfair/sponsors/market_mentors.jpg"
myimages[4]="https://protected.bizland.com/threecountyfair/sponsors/peoples_united_bank.jpg"
myimages[5]="https://protected.bizland.com/threecountyfair/sponsors/pioneer_valley_family_medicine.jpg"
myimages[6]="https://protected.bizland.com/threecountyfair/sponsors/webber_grinnell.jpg"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.florencesavings.com"
imagelinks[2]="http://www.maplelinefarm.com"
imagelinks[3]="http://www.marketmentors.com"
imagelinks[4]="http://www.peoples.com"
imagelinks[5]="http://baystatehealth.com/Baystate/Main+Nav/About+Us/Locations/Baystate+Medical+Practices/Primary+Care/Pioneer+Valley+Family+Medicine+%28pediatric+and+adult%29"
imagelinks[6]="http://www.webberandgrinnell.com"



var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_top"><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
//-->


