// JavaScript Document
function Quote (sThisName, sThisQuote) {
	
	this.sName = sThisName;
	this.sQuote = sThisQuote;
}

function ChooseQuote() {
	
	var nQuote = Math.floor(oQuotes.length*Math.random());	
	var oQuote = oQuotes[nQuote];
	
	document.getElementById("oQuoteHeader").innerHTML = oQuote.sName;
	document.getElementById("oQuoteText").innerHTML = oQuote.sQuote;
}

var oQuotes = new Array();

	oQuotes[0] = new Quote("Veronica Capaldi:","What can I say?  You did a GREAT job last night at the Theatre Royal. My husband, sitting in the circle, thought you were superb!");
	oQuotes[1] = new Quote("Nottingham Evening Post:","An absolutely terrific show – had us entertained all evening.");
	oQuotes[2] = new Quote("Martin Aragon of Headway:","Just a note to thank you for your input into the gala dinner at Wollaton Hall. It was a magical night in every way.");
	oQuotes[3] = new Quote("Portland College:","Thank you for providing your wonderful table magic at this year’s Diamond and Tiara Bal");
	oQuotes[4] = new Quote("Bruce Liddle, Rotary Club of Beeston:","Thank you for so ably entertaining us . . . . you successfully brought a good evening to a first-class conclusion by providing a stimulating, thought provoking and enjoyable performance. I am still wondering how you did that trick with the lottery numbers… ");
	oQuotes[5] = new Quote("Betty Cox:","You gave us such an entertaining evening. The guests were thoroughly involved throughout the evening and the mind reading created a great deal of hilarity.");
	oQuotes[6] = new Quote("Libba Jones:","A huge thank you for doing Tarot card readings at my party last Saturday.  Everyone was so impressed with your readings and there was a huge queue for you all evening . . . it really helped make my party a fantastic success.");
	oQuotes[7] = new Quote("Gill Tracey:","Wow, that was spooky!  How did you do that?");
	oQuotes[8] = new Quote("Mrs S:","Everyone was coming away from their tarot card readings saying how accurate you had been.  It helped make my 40th birthday a truly memorable one.  Thanks again.");
	oQuotes[9] = new Quote("Mr & Mrs Stewart:","Thanks for making our anniversary 'do' such a special one.  We loved the way you got everyone so involved in the magic.");
	oQuotes[10] = new Quote("Mrs E.T:","I was very impressed.  I thought the tarot readings would be popular but I didn't expect that so many people would be queuing up to see you.  Can you come again next year?");
	
