// JavaScript Document
// ==============================================
// 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] = '<em>Jenice Furman &ndash; Ralph Frengel Memorial Tournament:</em><br />"Your excellent catering staff made our function a great success!"';
Quotation[1] = '<em>Patty Araujo &ndash; Pslam of David Golf Tournament:</em><br />"The set&ndash;up was terrific and all went smoothly with many favorable comments.  Thanks to everyone for their greatly appreciated, courteous help."';
Quotation[2] = '<em>James K. Bristow &ndash; Redondo Beach Golf Tournament:</em><br />"Thank you for all of your service.  It was great.  Really appreciate the extra effort that your team of people put toward our tournament."';

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