// JavaScript Document
// Set up the image files to be used.
var the = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

the[0] = '../images/index_main_01.jpg'
the[1] = '../images/index_main_02.jpg'
the[2] = '../images/index_main_03.jpg'
the[3] = '../images/index_main_04.jpg'
the[4] = '../images/index_main_05.jpg'
the[5] = '../images/index_main_06.jpg'
the[6] = '../images/index_main_07.jpg'

var j = 0
var p = the.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = the[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="images/'+the[whichImage]+'" alt="Eagle Creek Church Lees Summit Missouri">');
}