$(function() {
    setInterval("rotate()", 5000);
});

function rotate() {
    var first = $(".fnRotator").first();
    first.hide("slow", function() {
        first.remove();
        $(".fnRotator").last().after(first.show());
    });
}
