//Setember 2010: This JavaScript, along with the contents and folder located at http://library.sps.edu/pix/archrefresh (altered to 1 px height to keep from pushing down the top of the page) are no longer active (in ohrstromstyle.css: #rightblock{visibility: hidden;} ), but are being included to avoid a JavaScript error in Internet Explorer 7 in the earlier Archive Exhibits.  These files can be removed at a future date once exhibits are absorbed into the OLDA WordPress website.  
<!-- Begin


var theImages = new Array() 


theImages[0] = '/pix/archrefresh/archrefresh1.jpg'
theImages[1] = '/pix/archrefresh/archrefresh2.jpg'
theImages[2] = '/pix/archrefresh/archrefresh3.jpg'
theImages[3] = '/pix/archrefresh/archrefresh4.jpg'
theImages[4] = '/pix/archrefresh/archrefresh5.jpg'
theImages[5] = '/pix/archrefresh/archrefresh6.jpg'


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('<img src="'+theImages[whichImage]+'">');
}


//  End -->

