$j = jQuery.noConflict(true);
$j(document).ready(function(){	
	$j('marquee').marquee('news-scroller').mouseover(function () {
		$j(this).trigger('stop');
	}).mouseout(function () {
		$j(this).trigger('start');
	})
});
