// ==============================================
// 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] = "\"When I received Greenpig I dropped a packet in the toilet per instruction and from that day to this, my home and environs have been odor free. Everytime I reorder I tell Brian Goodman how I so very much appreciate Greenpig.\" Amy Frazee (Colville, WA)";
Quotation[1] = "\"I have not had the system pumped since I started using Green Pig. It is priced right and I find it effective. My friend and neighbor are also using it after enquiring about it.\" Babe Uhlig";
Quotation[2] = "\"Our service person always comments on how “clean” the tank is. I have great confidence in Greenpig and have recommended it to several friends.\" Al and Rita Benney (Shelton, CT)";
Quotation[3] = "\"I’ve lived in several homes over the past 40 years, all of which were on septic systems, and this is the best treatment product I have found. Keep up the good work!\" C. Arthur Teets (Sedona, Arizona)";


// ======================================
// 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]);}
