$(
    function() {
        $(".twitter-status").hide();
        $(".twitter-status:first").show();
        
        var index = 1;
        $.timer(6000, function(timer) {
            $(".twitter-status").slideUp();
            $(".twitter-status:eq("+index+")").slideDown();
            index = index + 1;
            index = index % 5;
        });
    }
);

