



var theImages = new Array() 
var theImagetxt = new Array() 





 
theImages[0] = 'banner_images/Clinton_Falls.gif';

theImagetxt[0] = 'Clinton Falls';






 
theImages[1] = 'banner_images/Steele_County_Fairgrounds.gif';

theImagetxt[1] = 'Steele County Fairgrounds';






 
theImages[2] = 'banner_images/Owat_Downtown_1.gif';

theImagetxt[2] = 'Downtown Owatonna';






 
theImages[3] = 'banner_images/Owat_Downtown_2.gif';

theImagetxt[3] = 'Downtown Owatonna';






 
theImages[4] = 'banner_images/West_Hills.gif';

theImagetxt[4] = 'West Hills';






 
theImages[5] = 'banner_images/Ellendalle_Street_Fair.gif';

theImagetxt[5] = 'Ellendale Street Fair in the early 1890\'s';






 
theImages[6] = 'banner_images/Village_of_Yesteryear.gif';

theImagetxt[6] = 'Village of Yesteryear';






 
theImages[7] = 'banner_images/Bridge.gif';

theImagetxt[7] = 'Bridge';






 
theImages[8] = 'banner_images/Administration_Building.gif';

theImagetxt[8] = 'Steele County Administration Building';






 
theImages[9] = 'banner_images/Mineral_Springs.jpg';

theImagetxt[9] = 'Mineral Springs Park';






 
theImages[10] = 'banner_images/Owatonna_Downtown_Today.jpg';

theImagetxt[10] = 'Owatonna Downtown Today';






 
theImages[11] = 'banner_images/Straight_River.jpg';

theImagetxt[11] = 'Straight River';






 
theImages[12] = 'banner_images/Straight_River_2.jpg';

theImagetxt[12] = 'Straight River';






 
theImages[13] = 'banner_images/Mineral_Springs_2.gif';

theImagetxt[13] = 'Mineral Springs';






 
theImages[14] = 'banner_images/Mineral_Springs_3.jpg';

theImagetxt[14] = 'Mineral Springs';




 


// do not edit anything below this line

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(){
 document.write('<td height="306" align="left" valign="top" style="background-image:url('+
 theImages[whichImage]+
');background-position:left top;background-repeat:no-repeat;">')

}
function getAlt(){
document.getElementById('alttxt').title = theImagetxt[whichImage];
}
//  End -->
