jQuery(function( $ ){
    var $offer = $('#offer-ticker');
    
	$offer.serialScroll({
		items:'.offer-item',
		duration: 5000,
		force:true,
		axis:'y',
		lazy:false,// 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
		cycle:true, //don't pull back once you reach the end
		step:1 // scroll 2 news each time
	});	
	
	$('#offer-ticker').hover(function(){
		$(this).stop().trigger('stop');
	},function(){
		$(this).stop().trigger('start');
	});

});
