$(document).ready(function() {
/*	var offerte = $('#offerte .box-hp');
	var offerta_next = 1;
	var offerta_width = 420;
	var interval_time = 4000; //tempo per l'animazione in ms
	var transition_time = 1800;
	
	//funzione che gestisce offerte
	function moveoffers(){
		var l =  - offerta_next * offerta_width; 
		$('#offerte').animate({
		 	left: l + 'px'
		}, transition_time);
		offerta_next ++; //aggiorno il numero della offerta
		if(offerta_next >= offerte.length) offerta_next = 0; //ricomincio da capo
	}
	var interval_id = setInterval(moveoffers, interval_time + transition_time);
	*/
 $('#offerte').cycle({
		fx:    'scrollUp',
		speed: 2000
	});	
 $('#offerte2').cycle({
		fx: 'fade' ,// choose your transition type, ex: fade, scrollUp, shuffle, etc...
		sync:0,
		speed:1000
	});

});


