function rotatetestimonial() {
			Effect.Fade('testimonials', { afterFinish: function() { 
				doAJAXCall('../new-testimonial.asp', 'post', '', testimonialResponse); 
			} } ); 
}

var testimonialResponse = function(oXML) {
	var responseTestimonial = oXML.responseText;
	document.getElementById('testimonials').innerHTML = responseTestimonial;
	Effect.Appear('testimonials');
}

