
var Images = new Array()

<!-- Add randonm inages by copying one of the previous image statements and changing it's file path. Do not forget to change the chronological image number to the next one up  -->
 
Images[0] = 'images/index images/untitled4.jpg'


<!-- DO NOT EDIT SCRIPT BELOW THIS LINE -->
var j = 0
var p = Images.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = Images[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+Images[whichImage]+'">');
}
