

// AJOUTER UN COMMENTAIRE //
function ajouterCom(){
	var dataFormCom = $("#add_comment").serialize();
	$.ajax({
			type : "POST",
			url : "ajax.php",
			data : dataFormCom,
			success : function(msg){
				$("#confirmCom").show();
				$("#confirmCom").html(msg);
				//$("#confirmCom").hide(7000);
				},
			error : function(err){
				alert("erreur : "+err);
				}
		   });
	return false;
	}

// RATING //


function rate(Id){
		$("#rating_"+Id+"").stars({
			inputType: "select",
			cancelShow: false,
			//disabled: true,
			split: 2,
			oneVoteOnly: true,
			callback: function(ui, type, value){
				
				var dataForm = $("#formRate_"+Id+"").serialize();
				$.get('ajax.php',dataForm, function(msg){
													$("#notifRate_"+Id+"").html(msg);
													$("#notifRate_"+Id+"").hide(7000);
													});
				}
		});
};











