<!-- original javascript.internet.com -->
var theQuotes = new Array() 

theQuotes[0] = '../images/quotes/quotes_01.gif'
theQuotes[1] = '../images/quotes/quotes_02.gif'
theQuotes[2] = '../images/quotes/quotes_03.gif'
theQuotes[3] = '../images/quotes/quotes_04.gif'
theQuotes[4] = '../images/quotes/quotes_05.gif'
theQuotes[5] = '../images/quotes/quotes_06.gif'
theQuotes[6] = '../images/quotes/quotes_07.gif'
theQuotes[7] = '../images/quotes/quotes_08.gif'
theQuotes[8] = '../images/quotes/quotes_09.gif'
theQuotes[9] = '../images/quotes/quotes_10.gif'
theQuotes[10] = '../images/quotes/quotes_11.gif'
theQuotes[11] = '../images/quotes/quotes_12.gif'
theQuotes[12] = '../images/quotes/quotes_13.gif'
theQuotes[13] = '../images/quotes/quotes_14.gif'
theQuotes[14] = '../images/quotes/quotes_15.gif'
theQuotes[15] = '../images/quotes/quotes_16.gif'
theQuotes[16] = '../images/quotes/quotes_17.gif'
theQuotes[17] = '../images/quotes/quotes_18.gif'

<!-- do not edit below -->
var j = 0
var p = theQuotes.length;
var preQuoteBuffer = new Array()
for (i = 0; i < p; i++){
   preQuoteBuffer[i] = new Image()
   preQuoteBuffer[i].src = theQuotes[i]
}
var whichQuote = Math.round(Math.random()*(p-1));
function showQuote(){
document.write('<img src="'+theQuotes[whichQuote]+'">');
}
