var EF_QuotesTwo = {

	data: [				
		
	
		{
			nameone: 'Lory Johnson',
			quoteone: 'I can tell that Andrews Davis attorneys are very respected by their clients and peers. There is a lot of depth in the firm. I can place one call to Andrews Davis to serve all of my legal needs.',
			nametwo: 'Don T. Zachritz',
			quotetwo: 'This is a close-knit group of professionals who work well together.',
		},
		{
			nameone: 'Cathie Kaserman',
			quoteone: 'Everyone is very competent. I can sleep at night and not worry about my business issues.',
			nametwo: 'Lory Johnson',
			quotetwo: 'I can tell that Andrews Davis attorneys are very respected by their clients and peers. There is a lot of depth in the firm. I can place one call to Andrews Davis to serve all of my legal needs.',
		},
		{
			nameone: 'Don T. Zachritz',
			quoteone: 'This is a close-knit group of professionals who work well together.',
			nametwo: 'Tom Riley',
			quotetwo: 'Andrews Davis attorneys and team members would never do anything inappropriate. It is a very ethical firm.',
		},
		{
			nameone: 'Andrea Gibson',
			quoteone: 'My attorney is very available by phone to me. I fI do talk with another team member, the individual is always up-to-speed on my case.',
			nametwo: 'Tom Riley',
			quotetwo: 'Andrews Davis attorneys and team members would never do anything inappropriate. It is a very ethical firm.',
		},
		{
			nameone: 'Don T. Zachritz',
			quoteone: 'This is a close-knit group of professionals who work well together.',
			nametwo: 'Andrea Gibson',
			quotetwo: 'My attorney is very available by phone to me. If I do talk with another team member, the individual is always up-to-speed on my case.',
		},
		{
			nameone: 'Tom Riley',
			quoteone: 'Andrews Davis attorneys and team members would never do anything inappropriate. It is a very ethical firm.',
			nametwo: 'Lory Johnson',
			quotetwo: 'I can tell that Andrews Davis attorneys are very respected by their clients and peers. There is a lot of depth in the firm. I can place one call to Andrews Davis to serve all of my legal needs.',
		},
		{
			nameone: 'Tom Riley',
			quoteone: 'Andrews Davis attorneys and team members would never do anything inappropriate. It is a very ethical firm.',
			nametwo: 'Cathie Kaserman',
			quotetwo: 'Everyone is very competent. I can sleep at night and not worry about my business issues.',
		},

	],	
	init: function()
	{
		this.get();
	},		
	get: function()
	{		
		var r = Math.floor(Math.random()*(this.data.length));
		var sel = this.data[r];		
		document.getElementById('nameone').innerHTML = sel.nameone;
		document.getElementById('quoteone').innerHTML = sel.quoteone;
		document.getElementById('nametwo').innerHTML = sel.nametwo;
		document.getElementById('quotetwo').innerHTML = sel.quotetwo;
	}	
}