// ==============================================
// 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] = "<p>Derek Kauppinen is a very trustworthy soul.  I never worry while I'm away.</p><p>I know my place is being well taken care of!</p><p>- Ryan Corrigan<br /><cite>Hawksley Workman</cite></p>";
Quotation[1] = "<p>Derek and Teresa are trustworthy and reliable and have completed tasks on time and with a high standard of excellence.</p><p>I intend to continue using them as long as they are available.</p><p>- Mavis Hetherington</p>";


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