var theImages1 = new Array()

//Random-loading images
theImages1[0] = '/images/header_mid_1.jpg'
theImages1[1] = '/images/header_mid_2.jpg'
theImages1[2] = '/images/header_mid_3.jpg'
theImages1[3] = '/images/header_mid_4.jpg'
theImages1[4] = '/images/header_mid_5.jpg'

var j1 = 0
var p1 = theImages1.length;
var preBuffer1 = new Array()

for (i = 0; i < p1; i++){
preBuffer1[i] = new Image()
preBuffer1[i].src = theImages1[i]
}
var whichImage1 = Math.round(Math.random()*(p1-1));

function showImageMid(){
document.write('<img src="'+theImages1[whichImage1]+'" width="496" height="186" alt="Crown Hill Funeral Home, Crematory, Cemetery in Indianapolis IN" />');

}
