// JavaScript Document

var theImages = new Array()
theImages[0] = './_img/quoteB01.gif'
theImages[1] = './_img/quoteB02.gif'
theImages[2] = './_img/quoteB03.gif'
theImages[3] = './_img/quoteB04.gif'
theImages[4] = './_img/quoteB05.gif'
theImages[5] = './_img/quoteB06.gif'
theImages[6] = './_img/quoteB07.gif'


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]+'">');
}

//  End -->
