var test_count = 0;
var test_counter = 1;	
$(document).ready(function(){

	var x = setInterval('slideTestimonial()', 10000);
	
});

function slideTestimonial(count){


	$(".testimonial:first").fadeOut(1000, function(){
	  	replace_text();
	  	$(".testimonial:first").fadeIn(1000);
  	});

	       
}


function replace_text(){
	if(test_count >= test_counter ){
		test_count = 1;
	}
	else {
		test_count++;
	}

		
	switch(test_count)	{
	
	
		case 1:
			$(".testimonial:first").html($('.testimonial-text-1').html());
			break;
		
		case 2:
			$(".testimonial:first").html($('.testimonial-text-2').html());
			break;
		
		case 3:
			$(".testimonial:first").html($('.testimonial-text-3').html());				
			break;

		case 4:
			$(".testimonial:first").html($('.testimonial-text-4').html());				
			break;

		case 5:
			$(".testimonial:first").html($('.testimonial-text-5').html());				
			break;

		case 6:
			$(".testimonial:first").html($('.testimonial-text-6').html());				
			break;

		case 7:
			$(".testimonial:first").html($('.testimonial-text-7').html());				
			break;
	}
}
