var theStudentImages = new Array() 

theStudentImages[0] = '/images/general/fs_common/fs_left_random_image01.jpg'
theStudentImages[1] = '/images/general/fs_common/fs_left_random_image02.jpg'
theStudentImages[2] = '/images/general/fs_common/fs_left_random_image03.jpg'
theStudentImages[3] = '/images/general/fs_common/fs_left_random_image04.jpg'
theStudentImages[4] = '/images/general/fs_common/fs_left_random_image05.jpg'
theStudentImages[5] = '/images/general/fs_common/fs_left_random_image06.jpg'
theStudentImages[6] = '/images/general/fs_common/fs_left_random_image07.jpg'
theStudentImages[7] = '/images/general/fs_common/fs_left_random_image08.jpg'
theStudentImages[8] = '/images/general/fs_common/fs_left_random_image09.jpg'
theStudentImages[9] = '/images/general/fs_common/fs_left_random_image10.jpg'

var j = 0
var p = theStudentImages.length;
var preStudentBuffer = new Array()
for (i = 0; i < p; i++) {
	preStudentBuffer[i] = new Image()
	preStudentBuffer[i].src = theStudentImages[i]
}

var whichStudentImage = Math.round(Math.random()*(p-1));

function showStudentImage(){
	document.write('<img src="'+theStudentImages[whichStudentImage]+'" width="173" height="185" border="0" alt="random student image">');
}
