	//Parallel Arrays for quotes and the person who said them.
	var quote_content = new Array()
	var quote_name = new Array()
	
	quote_content[0] = '"I’ve been using Point for about 8 years and it’s still user friendly. I really like the upgrades in the current version with the new right side bar and layout of the Good Faith Estimate."'
	quote_name[0] = '<b>Linda Vickery<br>Mutual Savings Credit Union</b>'
	
	quote_content[1] = '"We’ve used Point for about 7 years, and find it very cost effective for us to use. The disclosures in Point have always kept us in compliance, and it directly interfaces to the secondary market systems and the credit agencies we work with."'
	quote_name[1] = '<b>Mark Hegg<br>TwinStar Credit Union</b>'
	
	quote_content[2] = '"Calyx Software is the industry standard and it has always proven to work great for us."'
	quote_name[2] = '<b>David Turner<br>Westside Bank</b>'
	
	
	//Get the length of the array and randomly select a quote
	var random_quote = Math.floor(Math.random()*quote_content.length)

