// JavaScript Document

var Quotation=new Array() // do not change this!

Quotation[0] = "“Those who forget the pasta are condemned to reheat it.” ~Author Unknown";
Quotation[1] = "“They are all but stomachs, and we all but food; They eat us hungerly, and when they are full, They belch us.” William Shakespeare";
Quotation[2] = "“Respect your dinner: idolize it, enjoy it properly. You will be many hours in the week, many weeks in the year, and many years in your life happier if you do.” William Makepeace Thackeray ";
Quotation[3] = "“Part of the secret of success in life is to eat what you like and let the food fight it out inside.” Mark Twain";
Quotation[4] = "“Pastry satisfies where art is unavailable.” ~Author Unknown";
Quotation[5] = "“....the pleasure of eating something because it is expensive has absolutely nothing to do with the taste of good cuisine.” X. Marcel Boulestin";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

