// ==============================================
// 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] = "Absolutely amazing flowers were provided by Laura for my wedding - she listened and had visions of what I was trying to achieve when I couldnt picture the ideas myself. The flowers were wonderful and crisp and fresh and working with Laura was a pleasure! Highly recommended <p class='quoteby'>&mdash; Ginnie Mayers, Bristol</p>";
Quotation[1] = "Just a note to say thank you so much for providing us with such beautiful flowers for our wedding day. The colours were beautiful and everyone commented on how pretty they were!<p class='quoteby'>&mdash; Nina, Bristol </p>";
Quotation[2] = "The flowers for the wedding were simply perfect in every way, exactly what we wanted and everyone commented on them from the bouquets to the table arrangements. Many many thanks.<p class='quoteby'>&mdash; Vicky, London </p>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
//function showQuotation(){document.write("<blockquote><p class='blockquote'>"+Quotation[whichQuotation]+"</p></blockquote>");}


function showQuotation(){document.write('<blockquote><span class="bqstart">&#8220;</span><p class="blockquote">'+Quotation[whichQuotation]+'</p><span class="bqend">&#8221;</span></blockquote>');}

