$j(document).ready(function() {
	$j("#nextTestimonial").click(function(e){
		e.preventDefault();
		$j("span.testimonial").fadeOut('fast');
		$j("span.testimonial").load("/includes/ajaxNextTestimonial.cfm", { testimonialType: $j("span.testimonial").attr("rel") }, function(){$j("span.testimonial").fadeIn();});
		return false;
	});	
});
