jQuery(document).ready(function (){
    jQuery('#marqueeText').marquee(
        scrollamount="2",
        behavior="scroll",
        direction="right"
    ).mouseover(function () {
        jQuery(this).trigger('stop');
    }).mouseout(function () {
        jQuery(this).trigger('start');
    })
});
