var theImages = new Array() 
	theImages[0]  = 'Images/Arnott2011Fall.jpg'
	theImages[1]  = 'Images/Bach2011Fall.jpg'
	theImages[2]  = 'Images/Covington2011Fall.jpg'
	theImages[3]  = 'Images/Darling2011Fall.jpg'
	theImages[4]  = 'Images/Derevianko2011Fall.jpg'
	theImages[5]  = 'Images/Geraci2011Fall.jpg'
	theImages[6]  = 'Images/Ivanov2011Fall.jpg'
	theImages[7]  = 'Images/Kantsyrev2011Fall.jpg'
	theImages[8]  = 'Images/Mancini2011Fall2.jpg'
	theImages[9]  = 'Images/McCall2011Fall.jpg'
    	theImages[10] = 'Images/Phaneuf2011.jpg'
	theImages[11] = 'Images/Presura2011.jpg'
	theImages[12] = 'Images/Rodrigue2011Fall.jpg'
	theImages[13] = 'Images/Safronova2011Fall.jpg'
	theImages[14] = 'Images/Weinstein2011Fall.jpg'
	theImages[15] = 'Images/Winkler2011Fall.jpg'
	theImages[16] = 'Images/Winterberg2011.jpg'


//	theImages[0]  = 'Images/Taisuke.jpg'
//	theImages[1]  = 'Images/Derevianko.jpg'
//	theImages[2]  = 'Images/GraduationSpring2007.jpg'
//	theImages[4]  = 'Images/Presura.jpg'
//	theImages[6]  = 'Images/McCall_Lewis.jpg'
//	theImages[6]  = 'Images/GradStudentsLG.jpg'
//	theImages[7]  = 'Images/GraduationSpring2007.jpg'
//	theImages[14] = 'Images/Sentoku2011.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]+'">');
	}

