jQuery(function($){
	
	var $news = $('#newsinner');
	var intval = 2000; //how often to autoscroll (in milliseconds)
	$news.serialScroll({
		items:'dt',
		duration:2000,
		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:intval, // yeah! I now added auto-scrolling
		step:1
	});
	
	// 	You can remove the .stop() to let it finish the active animation
	//	$('#newsinner').hover(function(){
	//		$(this).stop().trigger('stop');
	//	},function(){
	//		$(this).stop().trigger('start');
	//  });
	
});	

