

jQuery(function( $ ){

	var $news = $('#verdict-ticker');//we'll re use it a lot, so better save it to a var.

	$news.serialScroll({

		items:'div',

		duration:25000,

		force:true,

		axis:'y',

		easing:'linear',

		// lazy:true,NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.

		interval:1, // yeah! I now added auto-scrolling

		step:1 // scroll 2 news each time

	});	

	

});

jQuery(function( $ ){

	var $news = $('#verdict-ticker-test');//we'll re use it a lot, so better save it to a var.

	$news.serialScroll({

		items:'div',

		duration:15000,

		force:true,

		axis:'y',

		easing:'linear',

		// lazy:true,NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.

		interval:1, // yeah! I now added auto-scrolling

		step:1 // scroll 2 news each time

	});	

	

});