<!--
var Quotation=new Array()

Quotation[0] = "<p class='quote'><strong>'Its rare that something unique and this good comes to the soft play industry'</strong><br/><br style='line-height:50%;'/>:- Rupert Oliver, pioneer of the soft play industry.</p>";
Quotation[1] = "<p class='quote'><strong>'Now smaller centres can use laser games to broaden their appeal'</strong><br/><br style='line-height:50%;'/>:- Patrick Holmes, originator of Zone Laser Game products.</p>";
Quotation[2] = "<p class='quote'><strong>'Kids absolutely love our laser game'</strong><br/><br style='line-height:50%;'/>:- Tracy Pearson, Little Drivers, Notts.</p>";
Quotation[3] = "<p class='quote'><strong>'Laser parties have been terrific. This product fits us exactly'</strong><br/><br style='line-height:50%;'/>:- Paul Sharp, Kids Play.</p>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function returnQuote(){
	return document.write(Quotation[whichQuotation]);
}
//-->