jQuery(document).ready(function() {
    // Hide all testimonials and start the fader
    jQuery('.single-testimonial').hide();
    jQuery('.single-testimonial:first').show().addClass('active-testimonial');
    jQuery('#read-more').click(function() {
        current = jQuery('.active-testimonial');
        fadeOutCurrentFadeInNext(current);
    });
});

function fadeOutCurrentFadeInNext(current)
{
    current.fadeOut(500, function() {
        current.removeClass('active-testimonial');
        var next = current.next();
        if (!next.size()) {
            next = jQuery('.single-testimonial:first');
        }
        next.fadeIn(500, function() {
            next.addClass('active-testimonial');
        });
    });
}