var theImages = new Array()

//Random-loading images
theImages[0] = '/images/header_left_1.jpg'
theImages[1] = '/images/header_left_2.jpg'
theImages[2] = '/images/header_left_3.jpg'
theImages[3] = '/images/header_left_4.jpg'
theImages[4] = '/images/header_left_5.jpg'
theImages[5] = '/images/header_left_6.jpg'
theImages[6] = '/images/header_left_7.jpg'
theImages[7] = '/images/header_left_8.jpg'
theImages[8] = '/images/header_left_9.jpg'
theImages[9] = '/images/header_left_10.jpg'
theImages[10] = '/images/header_left_11.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 showImageLeft(){
document.write('<img src="'+theImages[whichImage]+'" width="156" height="186" alt="Evergreen Washelli Funeral Home and Cemetary" />');

}