$(document).ready( function(){ 
     
	 $("#cart").bind("mouseenter", function(){
	      $('#cart_over').show();								   
          
	  });
		
	 $("#cart").bind("mouseleave", function(){
      
		$('#cart_over').hide();
      });
	 
	 
				
		$('.promozioni ul').innerfade({
			speed: 2000,
			timeout: 7000,
			type: 'sequence',
			containerheight: '42px'
		});
	
					
} ); 