$(document).ready(function () {
	createTicker();
}); 

function createTicker(){
	//set the quotes array
	tickerItems = new Array(
	' <h1>Alan Jones AO :</h1> <p>"Richard and Joey have a long track record of working to promote activity amongst our children and, beyond that, to keep our children active"</p>  ', 
	'<h1>Margret Balzan:</h1> <p>"The quality I admire about Richard and Joey is for their true compassion. My daughter was struggling with her weight and Richard worked with her for months where she lost weight, was a lot healthier but more than anything gained confidence which has changed her life forever."</p>', 
	'<h1>Craig Wing :</h1> <p>"Richard and Joey Marc have simplified the confusion of providing and maintaining a healthy lifestyle"</p>',
	'<h1>Daran Pratt Author :</h1> <p>"To my business coach and mentor Richard Marc Toutounji. Without Richard this book would not have been written. He was there riding my ass and keeping me accountable. He believed in me when I was unsure. With Richard in my sphere of influence my success is guaranteed"</p>'
	);
	i = 0;
	tickerIt();
}

function tickerIt(){
	if( i == tickerItems.length ){
		i = 0;
	}
	//change without effect
	//$('#ticker').html(tickerItems[i]);

	//change with effect
	$('.testimonials').fadeOut("slow", function(){
		$(this).html(tickerItems[i]).fadeIn("slow");
		i++;
	});
	
	//repeat - change 5000 - time interval
	setTimeout("tickerIt()", 9000);
}
