//=============================== SCROLL PRODOTTI HOME E OFFERTE
$(document).ready(function(){

	if ($('#offers li').length > 4) {
		$('#offers ul li:last').remove().prependTo('#offers ul');
		$('#offers ul').css('left','-150px');
	}
	
	gallery = $('#offers ul');
	offset = gallery.children('li').outerWidth(true);
	elemWidth = gallery.children('li').width();
	
	$('#next').click(function(){
		if (!gallery.is(':animated')) {
			gallery.stop(true).animate({'margin-left':'-'+offset}, 600, function(){
				gallery.children('li:first').remove().appendTo(gallery);
				gallery.css('margin-left','0px');
			});
		}
	});
	
	$('#prev').click(function(){
		if (!gallery.children('li:first').is(':animated')) {
			gallery.children('li:last').css({'width':'0px', 'padding':'0px', 'margin':'0px', 'overflow':'hidden'}).remove().prependTo(gallery);
			gallery.children('li:first').stop(true).animate({width:elemWidth, 'padding':'5px', 'marginRight':'10px'}, 600);
		}
	});
});

