var theImages = new Array() 
	theImages[0] = 'Images/Taisuke.jpg'
	theImages[1] = 'Images/Derevianko.jpg'
	theImages[2] = 'Images/GraduationSpring2007.jpg'
	theImages[3] = 'Images/Mancini.jpg'
	theImages[4] = 'Images/Presura.jpg'
    theImages[5] = 'Images/GradStudentsLG.jpg'
	theImages[6] = 'Images/McCall_Lewis.jpg'
//	theImages[7] = 'Images/GraduationSpring2007.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 showImage(){
	document.write('<img src="'+theImages[whichImage]+'">');
	}
