<!--
// store the quotations in arrays
quotes = new Array(5);
authors = new Array(5);
quotes[0] = 		"Your on call service is unbeatable in Perth and always a pleasure doing business with SCOPE. ";
authors[0] = 	"Michael Ratner, Compendium";
quotes[1] = 		"We have found the customer service and technical support team of SCOPE business imaging to be very helpful. ";
authors[1] = 	"Wendy Martin, Fugro Airborne Surveys";
quotes[2] = 		"The service department is very helpful, and a technician is at our door, usually within the hour. ";
authors[2] = 	"Janet Bannon, HL Community Choice Home Loans";
quotes[3] = 		"I have never had to follow-up on an outstanding job or delivery and this makes my job easier.";
authors[3] = 	"Lana Dobrow, Hardman Resources Ltd.";
quotes[4] = 		"If you are in the market for a copier then you will do no better than dealing with SCOPE. Top company, top equipment.";
authors[4] = 	"Les Biggerstaff, Property Practice";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation

document.write("<b>&#8220;</b>" + quotes[index] + "<b>&#8221;</b>" + "<br />")
document.write("<span class=\"more\">" + authors[index] + "</span>")

// -->