//顶部的信息循环显示
    function scroll_news() {
        var firstNode = $('#newstop dd'); //获取li对象       
        firstNode.eq(0).fadeOut('slow', function() { //获取li的第一个,执行fadeOut,并且call - function.
            $(this).clone().appendTo($(this).parent()).show('slow'); //把每次的li的第一个 克隆，然后添加到父节点 对象。
            $(this).remove(); //最后  把每次的li的第一个 去掉。
        }); //注意哦,这些都是在fadeOut里面的callback函数理执行的。
    };
    setInterval('scroll_news()', 5000); //每隔0.5秒，执行scroll_news()
