
var EF_Quotes = {

	data: [				
		
		{
			quote: 'They ask the right questions and offer valuable insight and advice. The process with Element Fusion was a true collaboration.',
			author: 'Kelley Harnett',
			link: 'http://www.mscwired.org/',
			linkText: 'Morning Star Church'
		},
		{
			quote: 'Element Fusion is quick to answer my questions.',
			author: 'Carissa Phillips',
			link: 'http://www.frontiers.org/',
			linkText: 'Frontiers'
		},
		{
			quote: 'They created a design that&#8217;s not only pleasant to the eyes, but also meets our business goals',
			author: 'Vincent Lee',
			link: 'http://www.ds9hse.com/',
			linkText: 'D&#8217;sign House'
		},
		{
			quote: 'I am a novice, yet Element Fusion never talks down to me.',
			author: 'Jeff Alexander',
			link: 'http://www.ssmhc.com/',
			linkText: 'St. Anthony Foundation'
		},
		{
			quote: 'They exceeded our expectations for the overall appearance of our site.',
			author: 'George Geissler',
			link: 'http://www.forestry.ok.gov/',
			linkText: 'Oklahoma Forestry Services'
		},
		{
			quote: 'I have truly enjoyed working with Element Fusion. They are some of the most creative people I know.',
			author: 'Nathan Zabka',
			link: 'http://www.cherokeehillsbaptist.org/',
			linkText: 'Cherokee Hills Baptist Church'
		},
		{
			quote: 'The Element Fusion crew is always friendly and willing to help with any question I have.',
			author: 'Bob Miller',
			link: 'http://www.bethanynaz.org/',
			linkText: 'Bethany First church of the Nazarene'
		},
		{
			quote: 'Element Fusion continues to provide excellent customer service and a high quality product.',
			author: 'Margret Bruza',
			link: 'http://wwww.fbcedmond.org/',
			linkText: 'First Baptist Church of Edmond'
		},
		{
			quote: 'A fantastic solution for my business.',
			author: 'Eric Granata',
			link: 'http://www.ericgranata.com/',
			linkText: 'www.ericgranata.com'
		},
		{
			quote: 'Any time i needed help i had a response back in no time.',
			author: 'Nathan Sutliff',
			link: 'http://www.columbiagrace.org/',
			linkText: 'Grace Church of the Nazarene'
		},
		{
			quote: 'You guys melt my face! Thank you for your quick response.',
			author: 'Eric Granata',
			link: 'http://www.hhbc.com/',
			linkText: 'Henderson Hills Baptist Church'
		},
	
	],	
	init: function()
	{
		this.get();
	},		
	get: function()
	{		
		var r = Math.floor(Math.random()*(this.data.length));
		var sel = this.data[r];		
		document.getElementById('quoteBody').innerHTML = sel.quote;
		document.getElementById('quoteAuthor').innerHTML = sel.author;
		document.getElementById('quoteLink').innerHTML = sel.linkText;
		document.getElementById('quoteLink').href = sel.link;		
	}	
}