var Quotation=new Array()
Quotation[0] = "&quot;We pride ourselves on our friendly, approachable, personal and professional service.&quot;";
Quotation[1] = "&quot;We provide a full floral design service which is Individual, Creative, Intimate, Original and Unique.&quot;";
Quotation[2] = "&quot;We regularly attend wedding fairs and look forward to seeing you at one of the events organised.&quot;";
Quotation[3] = "&quot;We currently have available a variety of vases, candelabras, plinths, urns to hire or purchase.&quot;";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
