
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "\"it is better to be happy for a moment and be burned up with beauty than to live a long time and be bored all the while\" <P>Don Marquis<BR>archy and mehitabel, 1927";
Quotation[1] = "Pastry satisfies where art is unavailable.";
Quotation[2] = "\"Art is Work\" <P>--Milton Glaser";

// ======================================
// 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]);}

