function quotes(){
	var title = new Array(7)
	var content = new Array(7)
	var byline = new Array(7)

	title[0] = "ON SUPPORT:"
	content[0] = "&quot;Occasionally we do have problems with attorneys not being able to download for whatever reason. Data-Vision's support is always available. They've always been able to work through problems and in most cases get it to work when attorneys' offices had problems downloading. So they've been really good on the support side.&quot;"
	byline[0] = "Anonymous"
	
	title[1] = "ON OPTIONS:"
	content[1] = "&quot;There were some days we were able to deliver packages through RemoteDocs on the morning of the loan closing. Before we couldn't have done that. We now have an option for delivering the package we never had before. Before we would have had to reschedule the loan closing because we couldn't get the package there.&quot;"
	byline[1] = "Anonymous"
	
	title[2] = "ON IMPLEMENTATION:"
	content[2] = "&quot;RemoteDocs was up front with their pricing and service. They delivered what they promised on time and problem-free. Our biggest concern with the jump to this technology was how receptive our settlement providers would be. We were elated to find that our settlement providers were not only receptive but eager for this delivery option. They love it!&quot;<br><br>&quot;I highly recommend that anyone considering electronic document delivery contact RemoteDocs first.&quot;"
	byline[2] = "Anonymous"
	
	title[3] = "ON PRODUCTIVITY:"
	content[3] = "&quot;It's a great customer service tool because you don't necessarily have to reschedule closings any more. We rarely had to reschedule before but with the crunch that we're in, trying to close loans in as short a time as possible, it does enable us to do a few more closings each day. We don't have all the printing, copying, sorting, packaging we used to.&quot;"
	byline[3] = "REBECCA S. KELLY, HANCOCK MORTGAGE CORP., GULFPORT, MS"	
	
	title[4] = "ON SCHEDULES:"
	content[4] = "&quot;Sometimes borrowers change their minds on the loan amount. If you work on the weekends or after hours, you can still send the docs out, whereas FedEx has a cut-off time. That's kind of nice and it's pretty helpful.&quot;"
	byline[4] = "GAIL HARRISON, USBANK, OWENSBORO, KY"	
	
	title[5] = "ON TRAINING:"
	content[5] = "&quot;It was easy to learn. It's not difficult at all. All our closers are trained. It's not difficult to train a person. It only takes a few minutes.&quot;"
	byline[5] = "GAIL HARRISON, USBANK, OWENSBORO, KY"	
	
	title[6] = "ON SOLUTIONS:"
	content[6] = "&quot;It helps a lot if there's a problem and you have to redo the documents. If you make a mistake on the docs you don't have to cancel your closing. You just send a new set of docs. Before you might have had to postpone a closing or you might have to fax an entire closing package, which is very time consuming, and then some states don't allow faxed documents. Then you would have to postpone and reschedule a closing and start over again. Now if they call from a closing and they want to change something we just get the changes approved and send new docs.&quot;"
	byline[6] = "GAIL HARRISON, USBANK, OWENSBORO, KY"	

	quote_index=Math.floor(Math.random()*7)

	returnstr = "<b>" + title[quote_index] + "</b><br><br>" + content[quote_index] + "<br><br><b>" + byline[quote_index] + "</b>"
	returnstr = "";
	return returnstr;
}
