var currentTestimonial = 1;

function testimonialChange(){
		new Effect.Fade("testimonial" + currentTestimonial);
		nextTestimonial = currentTestimonial + 1;
		if(currentTestimonial == maxTestimonials){
			currentTestimonial = 0;
			nextTestimonial = 1;
		}
		window.setTimeout('Effect.Appear(\'testimonial' + nextTestimonial + '\', {duration:.8})',500);
		currentTestimonial++;
}