quotes = new Array();
quotes[0] = '"I have been through the programme and it looks brilliant. The tailoring process has been very speedy. I\'m impressed."';
quotes[1] = '"We have negotiated a very favourable contract with kwango. The quality of the kwango products is excellent, and its approach to the use of IT as the learning medium is extremely well considered."';
quotes[2] = '"I have been through the programme and it looks brilliant. The tailoring process has been very speedy. I\'m impressed."';
quotes[3] = '"We are very pleased to order your e-learning for our Trust and would be happy to give a reference to any other organisation about the quality of your programmes and service."';
quotes[4] = '"Having looked at other E-Learning companies we chose kwango programmes because of the Social Care knowledge you have and the professional look and feel of their courses."';
quotes[5] = '"Everyone loves kwango e-learning! We think your e-learning is excellent and the price is very good."';
quotes[6] = '"We chose your e-learning over other competitors because of the quality of the programme, its accessibility regarding a range of disabilities, the ability to customise it to our authority\'s needs and the price."';
quotes[7] = '"Your e-learning is fantastic and I\'m a huge fan of your approach."';
quotes[8] = '"We are very happy to work with you to develop our own health-orientated case studies that reflect our services."';
quotes[9] = '"We are really pleased with the package and feel the learning outcomes for users will be excellent. Thanks for all your hard work."';

cites = new Array();
cites[0] = 'London Borough of Croydon';
cites[1] = 'SkillsforCare';
cites[2] = 'London Borough of Croydon ';
cites[3] = 'Southport and Ormskirk NHS Trust ';
cites[4] = 'Hartlepool Borough Council';
cites[5] = 'Cumbria County Council';
cites[6] = 'Buckinghamshire County Council';
cites[7] = 'Sheffield City Council';
cites[8] = 'Sussex Partnership NHS Foundation TrustTrust';
cites[9] = 'Newcastle City Council';



$(document).ready(function()
{
	var speed = 8000;
	var current = 0;
	var noSlides = quotes.length;
	
	show = function()
	{
		$('#topleftblock').fadeOut(1000, function(){
			$('#topleftblock').html('<blockquote>'+quotes[current]+'</blockquote><cite>'+cites[current]+'</cite>');
			$('#topleftblock').fadeIn(1000, function(){});
		});
	};  
	
	switchPhrase = function()
	{
		current = (quotes.length == current) ? 0 : current+1;
		show();
	};

	switchPhrase();
	var run = setInterval('switchPhrase()', speed);	

});
