固定DIV的css,overflow:hidden。

往上滚动显示

function autoScroll(obj){

    $(obj).find(".bulletin_center").animate({

        marginTop : "-80px"

    },800,function(){

        $(this).css({marginTop : "0px"}).find("h3:first").appendTo(this);

        $(this).css({marginTop : "0px"}).find("p:first").appendTo(this);

    })

}
时间间隔3秒

$(function(){

setInterval('autoScroll(".bulletin_board")',3000);

})