	//Parallel Arrays for quotes and the person who said them.
	var quote_content = new Array()
	var quote_name = new Array()
	
	quote_content[0] = '"I am impressed with Calyx PointCentral. It has made our company business model even more productive and profitable for our loan originators while at the same time making it easy for the company and our loan originators to stay in compliance. My sales rep was a great help with our transition to PointCentral. His knowledge of the software and his understanding of the mortgage business have been invaluable."'
	quote_name[0] = '<b>Anthony Fulginiti<br>New Seasons Financial, LLC</b>'
	
	quote_content[1] = '"We switched from Encompass because of the tremendous cost savings and we were impressed with the flexibility of PointCentral."'
	quote_name[1] = '<b>Ron Cahalan<br>The Lending Company</b>'
	
	quote_content[2] = '"Calyx always works; it’s just so stable. Employees that have used other systems are excited to learn that we can modify any of the fields that appear on multiple pages and they will automatically update throughout the file. And with PointCentral’s server platform, anybody with authority can access files 24/7 and we never have to worry about the security and integrity of our loan documents--and that’s huge."'
	quote_name[2] = '<b>Doyle Jensen<br>Residential Capital Mortgage</b>'
	
	
	//Get the length of the array and randomly select a quote
	var random_quote = Math.floor(Math.random()*quote_content.length)

