// ============================================================
// Gestion Javascript des étoiles de vote
// ============================================================
function notation(object_id)
{
	var obj=document.getElementById(object_id);	
	if(obj.src=='img/recherche_jouet_fiche_041.gif')obj.src = 'img/recherche_jouet_fiche_042.gif';
	else obj.src = 'img/recherche_jouet_fiche_041.gif';
}
function notation_neutre(object_id)
{
	var obj=document.getElementById(object_id);	
	obj.src='img/recherche_jouet_fiche_042.gif';
}

// ============================================================
// GESTION DU PANIER
// ============================================================
function ajout_note (id,note) {
	dataString = "id="+id;
	dataString += "&note="+note;
	$.ajax (
		{ 
			async   : true,
			type    : "POST", 
			dataType: "html",
			url     : "include/recup_notation_ajout.php",
			data    : dataString,
			success : function (msg) {
				$("#zone_notation").html (msg);
			} 
		} 
	);
}
