<!--
var thequotes = new Array() 

thequotes[0] = 'imgs/quotes/quote1.gif'
thequotes[1] = 'imgs/quotes/quote2.gif'
thequotes[2] = 'imgs/quotes/quote3.gif'


var j = 0
var p = thequotes.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = thequotes[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+thequotes[whichImage]+'">');
}

//-->