// JavaScript Document

function get_testimonial()
{
	$rand = Math.floor(Math.random()*3);
	switch($rand) {
		case 0: 
			$var = '<p>"Thanks for another wonderful job done! From a couple of very happy customers!"</p><p>- Rick and Sue</p>';
			break;
		case 1: 
			$var = '<p>"Dear John, Thank you for the light system to illuminate the stained glass window at Calvary Episcopal Church. Please thank all of your crew who were involved. Enjoy working with you!"</p><p>- Joe</p>';
			break;
		case 2: 
			$var = '<p>"I wish to thank you for your prompt response to our call for service. We were impressed with the three men who came to our house. We would highly recommend Kuntz Electric to others."</p><p>- Loren</p>';
			break;
	}
	document.write($var);
}
