	//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 in the mortgage industry for 30 years and Point is the easiest software that I’ve used"'
	quote_name[0] = '<b>Donita Milstead<br>The National Bank of Georgia</b>'
	
	quote_content[1] = '"Our mortgage Lenders love Point and can’t live without it!"'
	quote_name[1] = '<b>Joe Cusatis<br>Vantage Point Bank</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)

