// JavaScript Document

//fonctions boutique
$(document).ready(function() {
	
	$('a.lienPetitePhoto').hover(function() {
		$(this).find('img.petitePhoto').show();
	}, function() {
		$(this).find('img.petitePhoto').hide();
	});
	
	//btn quantite
	$('a.btn_mini_plus').click(function(){
		var qte = $('#quantite').val();
		qte++;
		$('#quantite').val(qte);
	});
	$('a.btn_mini_moins').click(function(){
		var qte = $('#quantite').val();
		qte--;
		if(qte > 0)
			$('#quantite').val(qte);
	});
	
	
	
});


//ajouter un produit au panouche
function ajouterPanier(idP, nomP){

	$('#dialog-confirm').find('strong').html(nomP);

	var qte = 1;
	if($('#quantite').val() > 1){
		qte = $('#quantite').val();
	}
	
	//appel ajax incrementation panier et creation session si pas encore cree	
	$.ajax({
		type: "GET",
		url: "ajoutPanier.php",
		data: "idP="+idP+"&qte="+qte,
		success: function(msg){
			if(msg != ""){
				$("#nb_produits_panier").html(msg);
				$("#dialog-confirm").dialog({
					modal: true,
					buttons: {
						'Voir le panier': function() {
							document.location = "panier.php";
							return false;
						},
						'Revenir à la page': function() {
							$(this).dialog('close');
						}
					}
				});
				$("#dialog-confirm").dialog('open');
			}else{
				alert("nok");
			}
		}
	});
	
}





