function ajouterAuPanier(produit, quantite) {
	$.get("/panier.php/ajouter/"+produit+"/"+quantite+"/", function(data) {
		if(data != '1') {
			if(data == 2) {
				jAlert("Cet article n'est plus en stock.", "Désolé");
			}
			else {
				jAlert("Impossible d'ajouter cet article au panier. Veuillez réessayer", "Erreur");
			}
		}
		else {
			$.get('/achats.xml',function(xml) {
				prixTotal(xml);
			});
			jPanierAjouter('Votre article a été ajouté au panier.', 'Article ajouté');
		}
	});
}

function enleverDuPanier(produit, quantite) {
	$.get("/panier.php/enlever/"+produit+"/"+quantite+"/", function(data) {
		if(data != '1') {
			alert("Impossible d'enlever cet article du panier. Veuillez réessayer");
		}
		else {
			$.get('/achats.xml',function(xml) {
				prixTotal(xml);
			});
		}
	});
}

function viderPanier() {
	$.get("/panier.php/vider/", function(data) {
		if(data != '1') {
			alert("Impossible de vider votre panier. Veuillez réessayer");
		}
		else {
			$.get('/achats.xml',function(xml) {
				prixTotal(xml);
			});
		}
	});
}

$(document).ready(function() {
	$.get('/achats.xml',function(xml) {
		prixTotal(xml);
	});
});

function prixTotal(xml) {
	$('.cart .infos #pTotal').fadeOut(function() {
		if ($('root items item',xml).length == 0) {
			$('.cart .infos #pTotal').text('0,00 EUR');
		}
		$('.cart .infos #pTotal').text($('total',xml).text()+" €");
		$('.cart .infos #pTotal').fadeIn();
	});
}
