var testimonialIndex = 0;
$(function(){
	var html = '<p>' + t_text[testimonialIndex] + '</p>';
	$("#testimonial-content").append(html);	
	setInterval(showTestimonial, 11000);		  
});

function showTestimonial() {
	
	var html = '<p>' + t_text[testimonialIndex] + '</p>';
	$("#testimonial-content").append(html);		 
	$("#testimonial-content p:first").animate({marginTop:'-=200'},1500,function(){
		$("#testimonial-content p:first").remove();
	});
	
	testimonialIndex++;
	if (testimonialIndex >= t_text.length) {
		testimonialIndex = 0;	
	}
}
