jQuery.fn.rotate = function () {
    var t = $(this);
    var n = t.next();
    setTimeout(function () {
        n.fadeIn(500);
        t.fadeOut(500, function () {            
            t.appendTo(t.parent());
            n.rotate();
        });
    }, 8000);
};
$(function () {
    $('#testimonial .quote:first').rotate();
});

