$(document).ready(function(){
    $(document).everyTime(6000, function() {
      FadeTestimonial();
    });
});

var FadeTestimonial = function(i)
{
    var current = $('#TestimonialRotator .testimonial:visible');
    current.next().fadeIn("fast");
    current.fadeOut("fast");
}
