// JavaScript Document
<!--

var theQuotes = new Array() 

theQuotes[0] = '"One of the very nicest things about life is the way we must regularly stop whatever it is we are doing and devote our attention to eating."<br><p class="q">Luciano Pavarotti and William Wright - Pavarotti, My Own Story'
theQuotes[1] = '"Cooking is like love. It should be entered into with abandon or not at all."<br><p class="q">Harriet van Horne'
theQuotes[2] = '"The art of dining well is no slight art; the pleasure not a slight pleasure."<br><p class="q">Michel de Montaigne, 1533'
theQuotes[3] = '"My doctor told me to stop having intimate dinners for four. Unless there are three other people."<br><p class="q">Orson Wells'
theQuotes[4] = '"A gourmet who thinks of calories is like a tart who looks at her watch."<br><p class="q">James Beard'
theQuotes[5] = '"As for butter versus margarine, I trust cows more than chemists."<br><p class="q">Joan Gussow'

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 whichQuote = Math.round(Math.random()*(p-1));
function showQuote(){
document.write('<p class="qI">'+theQuotes[whichQuote]+'</p>');
}
//-->