var mTestimonialIndex = 0;

function showTestimonial(){
	var fadeDelayMs = 500;
	var timeoutDelayMs = 12000;
	var trimAtChar = 250;
	
	if(mTestimonialIndex == testimonialText.length){
		mTestimonialIndex = 0;
	}
	var quote = testimonialText[mTestimonialIndex];
	var endIndex = quote.indexOf(" ", trimAtChar);
	if(endIndex == -1){	
		//quote = quote.substr(0, trimAtChar);
	}else{
		//quote = quote.substr(0, endIndex) + "...";
	}
	quote = quote.replace("&ldquo;", "");
	//quote = quote.replace("&pound;", "£");

	$("#testimonialTicker #text").hide();
	$("#testimonialTicker #text").css("height", "130px");
	$("#testimonialTicker #text").text(quote);
	$("#testimonialTicker #text").fadeIn(fadeDelayMs, function(){
		$(this).css('filter','');	
	});	
	$("#testimonialTicker #text").click(function() {
		window.location=""+mPageBase+"/testimonials.html";
	});
	
	mTestimonialIndex++;	
	setTimeout("showTestimonial()", timeoutDelayMs);
}
