jQuery(function( $ ){
	$('#news-ticker').serialScroll({
		items:'li',
		duration:500,
		force:true,
		axis:'y',
		easing:'linear',
		lazy:false,// NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
		interval:4000, // yeah! I now added auto-scrolling
		step:1, // scroll 2 news each time
		cycle:false,
		jump:true,
		
		prev:'#prev',
		next:'#next'
	});
});

jQuery(function( $ ){
  $('#news-ticker').hover(function () {
  	  $('#news-ticker').trigger( 'stop' );
   }, function() {
      $('#news-ticker').trigger( 'start' );
  });
});
