var theImages = new Array()

//Random-loading images
theImages[0] = 'img/ads/img0.jpg' // tanuccis
theImages[1] = 'img/ads/img1.jpg' // tcm
theImages[2] = 'img/ads/img2.jpg' // boyer
theImages[3] = 'img/ads/img3.jpg' // cataract lodge
theImages[4] = 'img/ads/img4.jpg' // faranam
theImages[5] = 'img/ads/img5.jpg' // hearts of america
theImages[6] = 'img/ads/img6.jpg' // meristem
theImages[7] = 'img/ads/img7.jpg' // mn patriot guard
theImages[8] = 'img/ads/img8.jpg' // mn memorial riders

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<a href ="http://www.tinuccis.com/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==1){
document.write('<a href ="http://www.504lending.com/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==2){
document.write('<a href ="http://www.boyertrucks.com/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==3){
document.write('<a href ="http://www.cataractlodge.com/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==4){
document.write('<a href ="http://www.farnamstreet.net/ target="_blank""><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==5){
document.write('<a href ="http://www.heartsamerica.com/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==6){
document.write('<a href ="http://www.thesagepartnership.com/intro.php" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}
else if(whichImage==7){
document.write('<a href ="http://www.mnpatriotguard.org/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}

else if(whichImage==8){
document.write('<a href ="http://www.mnmemorialriders.org/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=620 height=70></a>');
}

}