<!-- 
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
//var begin = 'http://preview.indwes.edu/ocls/Left-images/'
var begin = 'Images/Left-Column/'


theImages[0] = begin + 'dol-presentation.jpg'
theImages[1] = begin + 'jacksonlib.jpg'
theImages[2] = begin + 'jackson_glober.jpg'
theImages[3] = begin + 'jackson_glober.jpg'
theImages[4] = begin + 'jacksonlib.jpg'
theImages[5] = begin + 'jglobe.jpg'
theImages[6] = begin + 'jacksonlib.jpg'
theImages[7] = begin + 'jacksonwindow.jpg'

//theImages[7] = begin + 'filename.jpg'
// do not edit anything below this line

function showImage(seed){
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(seed*(p-1));
document.write('<img src="'+theImages[whichImage]+'">');
}
//-->