
/* start jQuery scope */
jQuery(function( $ ){


$news = $('#news-ticker');

$news.serialScroll({
  items:'div',
  duration:700,
  force:true,
  constant:false,
  axis:'y',
  lazy:true,
  interval:5*1000,
  step:1
});


$news.hover(
	function(e){
	  $(this).trigger('stop');
	//  console.log('stop');
	},
	function(e){
	  $(this).trigger('start');
	//  console.log('start');
	}
);


});  /* end of jQuery scope  */

