// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// http://www.codelifter.com/main/javascript/randomquote.shtml
// ==============================================

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] = "&ldquo;The smoothest and most professional real estate experience we have ever had. Shaun was on top of everything keeping us informed and handled all the details.&rdquo;<";
Quotation[1] = "&ldquo;Shaun's professionalism, attention to detail and timely communications facilitated both sales without requiring our presence in Vancouver on either occasion. We would recommend Shaun's services to other non-resident sellers.&rdquo;";
Quotation[2] = "&ldquo;I made the choice to work with Shaun because of his knowledge and ability to provide solid recommendation and direction for a non-resident sale of a property in Canada.&rdquo;";


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