var rQuotes=new Array();
var rQuotesBy=new Array();

rQuotes[0] = "<b style=\"font-size: 16px;\">The service I received from Ken was absolutely excellent.</b>";
rQuotesBy[0] = "<b style=\"font-size: 16px;\">Everett & Dorothy Carmichael</b>";
rQuotes[1] = "<b style=\"font-size: 16px;\">Thank you for your attention to detail.</b>";
rQuotesBy[1] = "<b style=\"font-size: 16px;\">Steve & Cindy Messer</b>";
rQuotes[2] = "<b style=\"font-size: 16px;\">There was never a delay in Ken's returning my phone calls</b>";
rQuotesBy[2] = "<b style=\"font-size: 16px;\">Bill & Jill Krause</b>";
rQuotes[3] = "<b style=\"font-size: 14px;\">Many thanks for your wonderful support of the Lady's Red Hat Golf Tournament!</b>";
rQuotesBy[3] = "<b style=\"font-size: 14px;\">Bill & Jill Krause</b>";
rQuotes[4] = "<b style=\"font-size: 16px;\">Ken and Ruth went above and beyond the call of duty....</b>";
rQuotesBy[4] = "<b style=\"font-size: 16px;\">Gregg & Danielle Nelson</b>";
rQuotes[5] = "<b style=\"font-size: 16px;\">We are very happy with the service we received.</b>";
rQuotesBy[5] = "<b style=\"font-size: 16px;\">Erik & Cynthia Raschke</b>";
rQuotes[6] = "<b style=\"font-size: 16px;\">I will recommend Ken and Ruth to all my friends and family.</b>";
rQuotesBy[6] = "<b style=\"font-size: 16px;\">Brenda Parsons</b>";
rQuotes[7] = "<b style=\"font-size: 16px;\">With many thanks for all your hard work selling our property...</b>";
rQuotesBy[7] = "<b style=\"font-size: 16px;\">The Shewfelts</b>";
rQuotes[8] = "<b style=\"font-size: 16px;\">Ken was great! I will definitely recommend you to my friends and family.</b>";
rQuotesBy[8] = "<b style=\"font-size: 16px;\">Ryan & Julie Benson</b>";
rQuotes[9] = "<b style=\"font-size: 16px;\">It was done efficiently and quickly and much to my approval.  I am very pleased...</b>";
rQuotesBy[9] = "<b style=\"font-size: 16px;\">Dianne Morken</b>";

function drawQuotes(numquotes)
{
	for (i=0;i<numquotes;i++) {
		randomquote=Math.round(Math.random()*(rQuotes.length-1));
		document.write("\""+rQuotes[randomquote]+"\"<br><i>&nbsp;&nbsp;&nbsp;"+rQuotesBy[randomquote]+"</i>");
	}
}