	testimonial = new Array(7);
	author = new Array(7);
					
	author[0] 			= "Michael Sivy National Realty"
	testimonial[0] 	= "Thank you for being a part of my business! I can and will without reservation recommend you as an invaluable business asset for those of us who are self-employed."
					
	author[1] 			= "Jack Griffin Broker/Owner, Remax Preferred Properties"
	testimonial[1] 	= "Commission Express provides a valuable service to the real estate community in a responsive, efficient and discrete manner. As a broker, I have seen the very happy difference a relationship with Commission Express can make for the agents in my office. You can compare it to the fax machine. How did we manage without it??"
					 
	author[2] 			= "LuVerne L. Boes Broker/Owner Century 21"
	testimonial[2] 	= "I found that Commission Express works and doesn't hurt me! Not always can or will I bail an agent out of financial problems. Commission Express helps the agent when the time is not right for me to help, and I thank you for your services."
					
	author[3] 			= "Judy Cranford Broker/Owner Cranford & Associates"
	testimonial[3] 	= "I wanted to thank you for providing such an excellent service. It is clear that the owners of your business have a background in real estate. This makes matters simple as you know what you are doing and you understand how our industry works. Your staff is always pleasant and offers speedy service. I have enjoyed doing business with your company, as have some of my agents."
					
	author[4] 			= "K. N., Kansas City RE/MAX Agent"
	testimonial[4] 	= "I wanted to take this opportunity to thank you. December of 2005 will mark my third year in real estate. I do not think I would be as far along as I am if you and your company had not been there for me. Knowing that you and Commission Express was there to fall back on as a new agent gave me peace of mind and allowed me to focus on new business. My urgency was always your urgency and that kind of attention is reassuring to your clients, it made a big difference to me, so thank you and I look forward to doing business with you in the future!"
					
	author[5] 			= "C.F. Century 21 Associate"
	testimonial[5] 	= "I can turn one commission into another if I use the commission advance to market other listings."
					
	author[6] 			= "C.M.Coldwell Banker Oklahoma"
	testimonial[6] 	= "I use factoring as an investment tool and then use the expense as a business write off."
						
	//Picks a random testimonial to display
	index = Math.floor(Math.random() * testimonial.length);

	//Displays the actual testimonial
	document.write("<p class=\"b large\">&ldquo;" + testimonial[index] + "&rdquo;</p>\n");
	document.write("<p class=\"t-r large\">" + author[index] + "</p>\n");