var theImages = new Array() 

theImages[0] = '/a/img/contact/CHE_D8309.jpg'
theImages[1] = '/a/img/contact/LS_ANT_10586.jpg'
theImages[2] = '/a/img/contact/LS_ANT_10671.jpg'
theImages[3] = '/a/img/contact/LS_CA_15562.jpg'
theImages[4] = '/a/img/contact/LS_CA_26703.jpg'
theImages[5] = '/a/img/contact/LS_CAN_D7740.jpg'
theImages[6] = '/a/img/contact/LS_KY_019062.jpg'
theImages[7] = '/a/img/contact/LS_KY_D3289.jpg'
theImages[8] = '/a/img/contact/PG_GN_10290.jpg'
theImages[9] = '/a/img/contact/PG_KG_10373.jpg'
theImages[10] = '/a/img/contact/DOL_CS_020860.jpg'
theImages[11] = '/a/img/contact/OTTSEA_022003.jpg'
theImages[12] = '/a/img/contact/PB_D7498.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]+'">');
}