
// ==============================================
// 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] = "\"Using pHence it saves me having to worry about buying the materials & spending hours dealing with suppliers. Also the labourers just dont want to install silt fencing. Often when I call for a small job to be done they can fit me in the same day or otherwise, always the next day\". - Mark Rankin, Lyncor ";
Quotation[1] = "\"I have found pHence it not only to be a cost effective alternative to our own labourers but a quality source of work with the ability to find and implement the answers to difficult sites and conditions with a minimum of fuss\". - Eric Smith, Civil Contractors ";
Quotation[2] = "\"pHence it continued research and development in their field of business, in my opinion, appoints them as market leaders and a supplier of choice. I have no hesitation in recommending pHence it\". - Terry OKeefe, Henley Properties";
Quotation[3] = "\" pHence it have proven to be a cost effective alternative to installing silt fences ourselves, not to mention a better quality end product\". - Greg Hawkins, Neumann Contractors";

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