var theImages = new Array() 

theImages[0] = '/images/sortpage/sorting_rndm_header01.jpg'
theImages[1] = '/images/sortpage/sorting_rndm_header02.jpg'
theImages[2] = '/images/sortpage/sorting_rndm_header03.jpg'
theImages[3] = '/images/sortpage/sorting_rndm_header04.jpg'
theImages[4] = '/images/sortpage/sorting_rndm_header05.jpg'
theImages[5] = '/images/sortpage/sorting_rndm_header06.jpg'
theImages[6] = '/images/sortpage/sorting_rndm_header07.jpg'
theImages[7] = '/images/sortpage/sorting_rndm_header08.jpg'
theImages[8] = '/images/sortpage/sorting_rndm_header09.jpg'
theImages[9] = '/images/sortpage/sorting_rndm_header10.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 showHeaderImage() {
	document.write('<img src="'+theImages[whichImage]+'" width="770" height="369" align="right" border="0" alt="Southeastern Community College">');
}

