$(document).ready(function(){
	$('#carrello').hide();
	$('#pressa').hide();
	$('#claim').hide();
	$('#txt_carrello').hide();
	$('#txt_pressa').hide();
	
	$('#carrello').animate({
		opacity: 'show',
		left: '75px'
		}, 2000);
	$('#pressa').delay(500).animate({
		opacity: 'show',
		right: '25px'
		}, 1500);
	$('#claim').delay(2200).animate({
		opacity: 'show'
		}, 2000);
	$('#txt_carrello').delay(2600).animate({
		opacity: 'show'
		}, 1500);
	$('#txt_pressa').delay(2600).animate({
		opacity: 'show'
		}, 1500);
	$('#txt_pressa').hover(function () {
		  	  $('#pressa').animate({top:'90px'});
			   $('#txt_pressa').animate({right:'-10px'});
		  },function () {
		  	  $('#pressa').animate({top:'100px'});
			   $('#txt_pressa').animate({right:'0px'});
		  }
		);
	$('#txt_carrello').hover(function () {
	 	  	 $('#carrello').animate({top:'40px'});
			 $('#txt_carrello').animate({left:'20px'});
	  	},function () {
	    	$('#carrello').animate({top:'50px'});
			$('#txt_carrello').animate({left:'10px'});
	 	 }
		)
});
