// ==============================================
// 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] = "\"Are you tired of confusing 'red tape' and costly delays? We can help!\"";
Quotation[1] = "\"AcroCert provides you with a fast and professional service.\"";
Quotation[2] = "\"AcroCert - Your personalized building approvals and inspection service.\"";
Quotation[3] = "\"AcroCert's friendly and professional staff are here to help you.\"";
Quotation[4] = "\"We understand how important it is for your project to be assessed and certified in the quickest possible time.\"";
Quotation[5] = "\"AcroCert provides an inspection service to suit your timings and requirements.\"";
Quotation[6] = "\"AcroCert is committed to providing the highest quality standard to all our clients.\"";
Quotation[7] = "\"AcroCert helps get rid of the hassle - I just want to build!\"";
Quotation[8] = "\"Easier to deal with than Council and much quicker\"";
Quotation[9] = "\"We like the fact that we can get answers from AcroCert when we need them\"";
Quotation[10] = "\"The paperwork is excellent - especially with inspections and photos\"";
Quotation[11] = "\"The service AcroCert provides to us is just excellent\"";
Quotation[12] = "\"We like the efficiency and consistency we get with each job. They're very easy to deal with\"";
Quotation[13] = "\"The availability of staff is just brilliant. We can always get a quick answer to our questions\"";
Quotation[14] = "\"AcroCert's service makes it easy, there's no mucking around like you get with most of the councils\"";


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



