<!-- Begin
var theImages = new Array()

theImages[0] = 'photos/grafitti.jpg'
theImages[1] = 'photos/guitarman.jpg'
theImages[2] = 'photos/filmingcrew.jpg'
theImages[3] = 'photos/cool_blues.jpg'
theImages[4] = 'photos/cables.jpg'
theImages[5] = 'photos/cadjustingmic.jpg'
theImages[6] = 'photos/guitar_necks.jpg'
theImages[7] = 'photos/city_4.jpg'
theImages[8] = 'photos/b3_organ.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 class="border" src="'+theImages[whichImage]+'">');
}
//  End -->
