jQuery(document).ready(function($) {
  // Code using $ as usual goes here.
  $("#event marquee").marquee('pointer').mouseover(function () {
            $(this).trigger('stop');
        }).mouseout(function () {
            $(this).trigger('start');
        });
 
});

