    var ScrollText = {               
            speed: 1, //每次滚动幅度   
            interval: 100, //每次滚动间隔时间(毫秒)   
            mouseControl: true, //是否在鼠标放上时暂停滚动   
               
            /*****上面的三个属性可以简单对滚动进行配置，以下代码请不要修改******/  
            clid: 'go_down',   
            text: [],   
            _appendCount: [],   
            intervalFlag: 0,   
            init: function(){   
                var cl=$('.'+ScrollText.clid);   
                if(ScrollText.mouseControl){   
                    cl.mouseover(function(){ScrollText.stop();});   
                    cl.mouseout(function(){ScrollText.play();});   
                }   
                cl.each(function(i){   
                    ScrollText.text.push($(this).html());   
                    ScrollText._appendCount.push(0);   
                });   
                ScrollText.play();   
            },   
            doScrollText : function(){   
                var cl = $('.'+ScrollText.clid);   
                   
                cl.each(function(i){   
                     if(this.scrollTop+cl.height()>=this.scrollHeight){   
                        if(ScrollText._appendCount[i] > 100)   
                        {//清除无用内容，防止内容过多导致浏览器出现问题   
                            ScrollText._appendCount[i] = 0;   
                            $('.'+ScrollText.clid + ' .'+ScrollText.clid+'_temp').remove();   
                        }   
                        $('<div class='+ScrollText.clid+'_temp>'+ScrollText.text[i]+'</div>').appendTo($(this));   
                        ScrollText._appendCount[i]++;                           
                     }                    
                     this.scrollTop +=ScrollText.speed;   
                });   
            },   
            play:function(){   
                ScrollText.intervalFlag = window.setInterval('ScrollText.doScrollText();',ScrollText.interval);   
            },   
            stop: function(){   
                window.clearInterval(ScrollText.intervalFlag);   
            }   
        }   
               
        $(document).ready(function(){   
            ScrollText.init();       
        });   
           
