$(document).ready(function() {

	$('.funds-ticker').serialScroll({
		items:'div',
		duration:5000,
		force:true,
		start: 0,
		axis:'y',
		easing:'swing',
		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
	});
	
	/*$('.funds-ticker').hover(function() {
	
		$('.funds-ticker').trigger('stop');
	
	});*/

});