
	var currentStatement = 0;
	var totalTestimonials = 0;

	$(document).ready(function() {
		totalTestimonials = $("#testimonials_holder .testimonial").length;
		runStatementChanging(8000);

	});


	function runStatementChanging(interval)
  {
  	currentStatement = 0;
  	$("#testimonials_holder .testimonial:eq(0)").fadeIn(500);
		window.setInterval("changeStatement()",  interval);
  }

	//Replace the statement picture by chaging div css property 'background-image'
	function changeStatement()
	{
		currentStatement++;


		$("#testimonials_holder .testimonial:eq(" + (currentStatement-1) + ")").fadeOut(500, function() {
			if (currentStatement >= totalTestimonials)
			{
				currentStatement = 0;
			}
			$("#testimonials_holder .testimonial:eq(" + currentStatement + ")").fadeIn(500);
		});


	}
