$(function (){
			
	$('.mostraDettagli').live('click', function() {
		$(this).hide('slow');
		$('.dettagliProdotti').show('slow');
		$.ajax({
			type: 'post',
			url: 'carrello_suggest.php',
			data: 'az=show'
		});
	});	
	$('.nascondiDettagli').live('click', function() {
		$('.mostraDettagli').show('slow');
		$('.dettagliProdotti').hide('slow');
		$.ajax({
			type: 'post',
			url: 'carrello_suggest.php',
			data: 'az=hide'
		});
	});	
	
	
	$('#carrello input.quantita').live('change', function() {
		newVal = $(this).val();
		id = $(this).attr('rel');
		$('#carrello .loading').show('slow');
		$('#carrello input').attr('disabled', true);
		
		$.ajax({
			type: 'post',
			url: 'carrello_suggest.php',
			data: 'az=change&val=' + newVal + '&id=' + id,
			success: function(msg) {
				$('#cont_carrello').load('carrello.php', function() {
					$('#carrello .loading').hide('slow');
					$('#carrello input').removeAttr('disabled');
				});
			}
		});
	});
	
});
