var mTestimonialIndex = 0;

function showTestimonial(){
	var fadeDelayMs = 500;
	var timeoutDelayMs = 6000;
	var trimAtChar = 150;
	
	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;", "");

	$("#testimonialTicker p#quoteText").hide();
	$("#testimonialTicker p#by").hide();
	$("#testimonialTicker p#quoteText").text('"' + quote + '"');
	$("#testimonialTicker p#quoteText").fadeIn(fadeDelayMs);
	$("#testimonialTicker p#by").text(testimonialBy[mTestimonialIndex]);
	$("#testimonialTicker p#by").fadeIn(fadeDelayMs);	
	$("#testimonialTicker p#company").text(testimonialCompany[mTestimonialIndex]);
	$("#testimonialTicker p#company").fadeIn(fadeDelayMs);	
	
	mTestimonialIndex++;	
	setTimeout("showTestimonial()", timeoutDelayMs);
}