// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!
var Source=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] = "Very enjoyable first visit, we will be back.";
Source[0] = "P.R & S.R, Bournemouth";
Quotation[1] = "I had a lovely room, and a lovely stay.  Would definitely recommend and stay here again.";
Source[1] = "S.H, Weymouth";
Quotation[2] = "Friendly and welcoming here, thank-you.";
Source[2] = "S.R, Surrey";
Quotation[3] = "Lovely room and pub.";
Source[3] = "R.A, London";
Quotation[4] = "Had a nice few days, hope to see you soon.";
Source[4] = "D, Camberley";
Quotation[5] = "Comfortable room, good food.";
Source[5] = "A.M, Rayleigh";
Quotation[6] = "Love the place, will be back.";
Source[6] = "A & C & A, Perth";
Quotation[7] = "Great food, lovely.";
Source[7] = "J.M, Sherborne";
Quotation[8] = "Great hospitality.  Excellent Food.  We will be back!";
Source[8] = "M.L & A.L, London";
Quotation[9] = "Great place to stay.";
Source[9] = "S, Australia";
Quotation[10] = "Pleasant nights stay.";
Source[10] = "S & H, Canada";
Quotation[11] = "Fantastic place, real family feel, treated me like a son!  Highly recommended.";
Source[11] = "M & K, New Zealand";
Quotation[12] = "Very friendly welcome with a homely feel to the place - thank you.";
Source[12] = "A.L, Seaford";
Quotation[13] = "Excellent staff and best brekky ever!  Look forward to my next visit!!!";
Source[13] = "J.C, Canterbury";
Quotation[14] = "Great food, great service & great weekend!!!";
Source[14] = "S, V & R, Birmingham";
Quotation[15] = "What kind folks, splendid breakfast, comfy bed, good ale!  Magic!";
Source[15] = "J.W & S.W, London";
Quotation[16] = "Comfy bed, good breakfast, nice place.  Thank you.";
Source[16] = "S & J, Herts.";
Quotation[17] = "Great location, good nights sleep followed by a grand breakfast!  Cheers.";
Source[17] = "A & S, Wheathampstead";
Quotation[18] = "Very pleasant stay, very comfy beds and great food!";
Source[18] = "E & L, Nottingham";
Quotation[19] = "Thank you for your warm welcome, comfortable bed and great food!";
Source[19] = "M.A & R.A, Warwickshire";
Quotation[20] = "It has been a very, very pleasant stay thank you!";
Source[20] = "V.C, N.G & L.S, Switzerland";
Quotation[21] = "Do try the full English breakfast - Superb!";
Source[21] = "M.L & A.L, London";
Quotation[22] = "Thank you so much";
Source[22] = "J.C, Doncaster";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write('<span id="quote">"'+Quotation[whichQuotation]+'"</span>&nbsp;-&nbsp;<span id="source">'+Source[whichQuotation]+"</span>");}

