$(function(){	


//Automatic testimonial change function
	var testimonial_timeout = 8500; //Adjust testimonial change timeout
	var testimonial_speed = 750; //Adjust testimonial change speed
	
	
	function change_testimonial() {
		var current_testim = $('#testimonials p').index($('#testimonials p:visible'));
		var next_testim;
		if(current_testim == $('#testimonials p').length - 1) {
			next_testim = 0;
		} else {
			next_testim = current_testim + 1;
		}		
		$('#testimonials p:eq(' + current_testim + ')').fadeOut(testimonial_speed);
		$('#testimonials p:eq(' + next_testim + ')').fadeIn(testimonial_speed);		
	}
	
	var interval = setInterval(change_testimonial, testimonial_timeout);

});


