// JavaScript Document


<!-- Hide script from old browsers


var theImages = new Array()
theImages[0] = '/students/commencement/images/01.png'
theImages[1] = '/students/commencement/images/02.png'
theImages[2] = '/students/commencement/images/03.png'
theImages[3] = '/students/commencement/images/04.png'
theImages[4] = '/students/commencement/images/05.png'
theImages[5] = '/students/commencement/images/06.png'
theImages[6] = '/students/commencement/images/07.png'
theImages[7] = '/students/commencement/images/08.png'
theImages[8] = '/students/commencement/images/09.png'
theImages[9] = '/students/commencement/images/10.png'
theImages[10] = '/students/commencement/images/11.png'

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 class="floating" alt=" " src="'+theImages[whichImage]+'">');
}