    $j(function () {
        $j('div.tickertext marquee').marquee('pointer').mouseover(function () {
            $j(this).trigger('stop');
        }).mouseout(function () {
            $j(this).trigger('start');
        }).mousemove(function (event) {
            if ($j(this).data('drag') == true) {
                this.scrollLeft = $j(this).data('scrollX') + ($j(this).data('x') - event.clientX);
            }
        }).mousedown(function (event) {
            $j(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
        }).mouseup(function () {
            $j(this).data('drag', false);
        });
    });

