var EF_Quotes = {

	data: [				
		
		{
			quote: 'A Great SongSmith.',
			author: 'Shane Mc Gowan, The Pogues',
		},
		{
			quote: 'Stylish And Different.',
			author: 'Emma Hamilton, The Irish World',
		},
		{
			quote: 'Music of Quality and Distinction. Spot on!',
			author: 'Keith, Dublin',
		},
		{
			quote: 'Cant wait for the third album',
			author: 'Rebekah, Florida',
		},
		{
			quote: 'I found myself singing along, a great singer!',
			author: 'Martin, London',
		},
		
	],	
	init: function()
	{
		this.get();
	},		
	get: function()
	{		
		var r = Math.floor(Math.random()*(this.data.length));
		var sel = this.data[r];		
		document.getElementById('quote').innerHTML = sel.quote;
		document.getElementById('lblauthor').innerHTML = sel.author;	
	}	
}