// JavaScript Document

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] = " wanted to take a few minutes to thank you for the work that you have completed on my website. Your ability to take an idea from an industry that you were unfamiliar with and redesign a website to suit its needs was simply impressive.The website you designed is exactly what I had envisioned. Some of my clients have already in this short time remarked on the professional image which the website gives to our organization. -Art Mdz., International Surveillance Services";
Quotation[1] = "Web services, Just wanted to thank you for your time and dedication spent working with us. You have helped capture the professional look we wanted for our business. We look forward to the start of phase two of our web site. -John R., TaxReturnsNOW.com";
Quotation[2] = "The staff at Point Presenter created my professional-looking website on a very aggressive schedule. I am extremely pleased with the results and will definitely use them on my next project. -David Robertson, Alamo Elite K9";

// ======================================
// 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();