$("document").ready(function(){
	var $newproducts = $("#product-ticker");
	$newproducts.serialScroll({
		items:'div',
		duration:700,
		force:true,
		axis:'y',
		lazy:true,//NOTE: it's set to true, meaning you can add/remove/reorder items and the changes are taken into account.
		interval:5000, //yeah! I now added auto-scrolling
		step:1 //scroll 2 news each time
	});
	$('#product-ticker').hover(function(){
		$(this).stop().trigger('stop');
	},function(){
		$(this).stop().trigger('start');
	});
});
