function print_testimony( ) {
	testimonials = new Array();
	
	testimonials[0] = new Array();
	testimonials[0][0] = "We have been using Domino People for several years and have found their standard of work very high. We also use Domino People to provide on-going trouble-shooting and have never been disappointed with them in responding to urgent calls for help when the occasions arose.";
	testimonials[0][1] = "Bart D. Daly - First Law";

	testimonials[1] = new Array();
	testimonials[1][0] = "Justice for the Forgotten is very happy our 6 years of service from Domino People. They are always prompt and courteous with immediate access to the right person and offer a very reasonably priced support services.";
	testimonials[1][1] = "Justice for the Forgotten";

	testimonials[2] = new Array();
	testimonials[2][0] = "We have found Domino People offer a friendly and professional service. They are keen to re-solve any issues we encounter and we have found them to be very helpful and competitive.";
	testimonials[2][1] = "Tr&oacute;caire";
	
	var ranNum= Math.floor(Math.random()*3);
	
	document.write( "<p class=quote_text>\""+testimonials[ranNum][0]+"\"</p>\n" );
	document.write( "<p class=quoter>"+testimonials[ranNum][1]+"</p>\n" );
}