function eliminaCarrello(id) {
	$.ajax({
		type: "POST",
		url: "/elimina_carrello.php",
		data: {id: id},
		dataType: "html",
		success: function(contenuto){  
			$('#tr_carrello_' + id).hide('fast').remove();
			
			if ($('#riepilogo_ordine tr').size()==1) {
				document.location='/richiedi-un-preventivo.html';
			}
		}
	});
}
$(document).ready(function() {
	$('#menu_primario li a')
		.mouseover(function(){
			$(this).animate(
				{backgroundPosition:"0 0"}, 
				{duration:160})
			})
		.mouseout(function(){
			$(this).animate(
				{backgroundPosition:"0 -39px"}, 
				{duration:160})
			})	
		
	// riempie il carrello la prima volta
	if ($('#richiedi_preventivo').length>0) {
		$.ajax({
			type: "POST",
			url: "/carrello.php",
			dataType: "html",
			success: function(contenuto){  
				if(contenuto!='') {
					$('#richiedi_preventivo').html(contenuto);
				}
			}
		 });	
	}
});