
// ==============================================
// 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] = "&ldquo;Adults made up work as an excuse to play together.&rdquo;";
Quotation[1] = "&ldquo;The mark of a truly great manager is that no one notices when she's not around.&rdquo;";
Quotation[2] = "&ldquo;If you want to exceed your sales goals, hire children. They will NOT take &quot;no&quot; for an answer.&rdquo;";
Quotation[3] = "&ldquo;Grandparent your children - they'll turn out better.&rdquo;";
Quotation[4] = "&ldquo;The evening was filled with relevant and useful information but better than that, loads of laughter. The sound brought tears to my eyes.&quot;";

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

