// JavaScript Document
// JavaScript Document

<!-- Begin
// Set up the image files to be used.
var homePicImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

homePicImages[0] = '../images/randomHomePics/homePic1.jpg'
homePicImages[1] = '../images/randomHomePics/homePic2.jpg'
homePicImages[2] = '../images/randomHomePics/homePic3.jpg'
homePicImages[3] = '../images/randomHomePics/homePic4.jpg'
homePicImages[4] = '../images/randomHomePics/homePic5.jpg'
homePicImages[5] = '../images/randomHomePics/homePic6.jpg'

// do not edit anything below this line

var j = 0
var p = homePicImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = homePicImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showHomePicImages(){
document.write('<img src="'+homePicImages[whichImage]+'" border="0" class="blockImg" >');
}

//  End -->

