$(function(){
	var success_mess = {id: 'success_mess_carrello',
            position: 'bottom',
            size: 50,
            backgroundColor: 'green',
            delay: 1500,
            speed: 500,
            fontSize: '30px'
           };
	var error_mess = {id: 'error_mess_carrello',
            position: 'bottom',
            size: 50,
            backgroundColor: 'red',
            delay: 1500,
            speed: 500,
            fontSize: '30px'
           };
	$("a.pulsante_aggiungi_carrello").click(function(event){
		event.preventDefault();
		var id = $(this).attr("id").replace("aggiungi_carrello_", "");
		var tipo = $(this).attr("tipo");
		$.ajax({
			url: Config.getBaseURL() + "carrello/add/" + id + "/" + tipo,
			cache: false,
			type: "GET",
			dataType: "json",
			success: function(res){
				//$("#totale_prodotti_carrello").html("Totale prodotti: " + res.totale_prodotti);
				//$("#titolo_ultimo_carrello").html('<a rel="nofollow" title="' + res.titolo_ultimo + '" href="' + Config.getBaseURL() + 'prodotto/dettaglio/' + res.id_ultimo + '">' + res.titolo_ultimo + '</a>');
				//$("#totale_carrello").html("Totale ordine: " + res.totale_carrello);
				$.showMessage(__('prodotto_aggiunto_carrello'), success_mess);
			},
			error: function(xhr, text, error){ 
				$.showMessage(__('errore_aggiunta_prodotto', Config.getBaseURL()), error_mess);
			}
		});
	});
});
