/*
Author: Simone Volpini < www.simonevolpini.info >
This code is licensed under Creative Commons Attribution-ShareAlike License < http://creativecommons.org/licenses/by-sa/2.0/ >
*/

/**
 * Inserimento del prodotto nel carrello
 */
function insCart(idart) {

	var dataString = 'opt=ins&idart='+ idart;  

	var result = $.ajax({  
		type: "POST",
		url: "/ajax.php",
		data: dataString,
		async: false,
		success: function() {
			// aggiornamento contatore carrello in testata
			// $("#AJCart").append(" (1)");
			// $("#AJCartNum").append(" (1)");
			alert('Il prodotto è stato aggiunto al carrello - The product has been added to your shopping cart');
		}

	}).responseText;
}
