var theImages = new Array(19)

theImages[0] = 'images/assets/default_brigitteflock.jpg'
theImages[1] = 'images/assets/default_edlee.jpg'
theImages[2] = 'images/assets/default_chrismoxey2.jpg'
theImages[3] = 'images/assets/default_julielong.jpg'
theImages[4] = 'images/assets/default_rayhigginbottom.jpg'
theImages[5] = 'images/assets/default_ronmccammon.jpg'
theImages[6] = 'images/assets/default_shelleymackereth.jpg'
theImages[7] = 'images/assets/default_jonnybaker2.jpg'
theImages[8] = 'images/assets/default_vinnettecampbell.jpg'
theImages[9] = 'images/assets/default_jonnybaker.jpg'
theImages[10] = 'images/assets/default_chrismoxey.jpg'
theImages[11] = 'images/assets/default_suzieleveson.jpg'
theImages[12] = 'images/assets/default_brig2.jpg'
theImages[13] = 'images/assets/default_suzie2.jpg'
theImages[14] = 'images/assets/default_vinnettecampbell2.jpg'
theImages[15] = 'images/assets/default_chrishirsch.jpg'
theImages[16] = 'images/assets/default_chrishirsch2.jpg'
theImages[17] = 'images/assets/default_angelikaberndt.jpg'
theImages[18] = 'images/assets/default_fabrizio.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 border="0" src="'+theImages[whichImage]+'">');
}
