var theImages = new Array()

theImages[0] = 'interns/quote_brooks.jpg'
theImages[1] = 'interns/quote_bryant.jpg'
theImages[2] = 'interns/quote_clark.jpg'
theImages[3] = 'interns/quote_richardson.jpg'
theImages[4] = 'interns/quote_thomas.jpg'
theImages[5] = 'interns/quote_tiller.jpg'
theImages[6] = 'interns/quote_blanchard.jpg'
theImages[7] = 'interns/DemetriaJohnson.jpg'
theImages[8] = 'interns/EricaLittle.jpg'
theImages[9] = 'interns/JosephJohnson.jpg'
theImages[10] = 'interns/LaZedraJohnson.jpg'
theImages[11] = 'interns/marybrown.jpg'
theImages[12] = 'interns/SheriaMoore.jpg'
theImages[13] = 'interns/TonyAiken.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]+'">');
document.picMain.src = theImages[whichImage]
}


