// Random Quote Generator.
// These quotes need to be written in their own section on this file.
// Only 1 Sentence allowed per quote, unless said sentence is too short.
// This will pick a number at random at display. Some MAY Repeat.
// Variables to clear the Interval
	var clearIntervalID2 = 0;
	
// Function
function randomQuote2() {
	//Random Quote Generator.
		//Variables
		var news = new Array();
		var randomNews = Math.floor(Math.random() * (4));
		
		// Quotes
		// Only The first sentence of the quote
		news[0] = "Gabe Jaramillo - instrumental in developing eight No. 1 and 26 Top 10 players.";
		news[1] = "Adapted proven Periodization training method for tennis.";
		news[2] = "Maximization of time training with 2 high-intensity private sessions per day.";
		news[3] = "Passionate team of world-class coaches.";
		news[4] = "Dedicated to perfection.";
			
		/*
		image[0] = "images/john.png";
		quote[0] = "&ldquo;Safeguarding clean sport is one way of working towards safeguarding the moral fabric and wellbeing of society at large.&rdquo;";
		author[0] = "The Hon. John Fahey, A.C.";
		authorTitle[0] = "WADA President";
		linkPage[0] = "editorial/jtb.html";
		
		image[1] = "images/testimonials/random/cb.png";
		quote[1] = "&ldquo;Everybody should have the opportunity to play true, and I believe that everybody can play true[...]&rdquo;";
		author[1] = "Claudia Bokel";
		authorTitle[1] = "Olympic Medalist and World Champion in Fencing, Germany";
		linkPage[1] = "testimonials.html";
		console.log(quote[0].length);*/
		
		//console.log(quote.length);
		//console.log(randomNumber);
		$(".news_ticker").fadeOut(500, function() {
									  $(".news_ticker").replaceWith('<div class="news_ticker"><p>'+news[randomNews]+'</p></div>');
									  $('.news_ticker').css('display', 'none');
										  $(".news_ticker").fadeIn(500);
										});
		

		
		//clearInterval(clearIntervalID);
}
$(document).ready(function() {
		$(".news_ticker").replaceWith('<div class="news_ticker"><p>Gabe Jaramillo - instrumental in developing eight No. 1 and 26 Top 10 players.</p></div>');
		setInterval("randomQuote2()", 4500);
		//randomQuote();
		
});