$(function() {

	$( "#produitRecherche" ).autocomplete({
		source: function( request, response ) {
			$("#loadRechercheProd").css("display","block");
			$.ajax({
				url: "ajax/searchWords.php",
				dataType: "json",
				data: "param="+request.term,
				
				success: function( data ) {
					response( $.map( data, function( item ) {
						return {
							label: item.libelle,
							value: item.libelle,
							identProd: item.id,
							formatProd: item.libelleFormater
						}
					}));
					$("#loadRechercheProd").css("display","none");
				}
			});
		},
		minLength: 2,
		select: function( event, ui ) {
			$("#envoieFiche").attr("href", "fiche-produit-"+ui.item.identProd+"-"+ui.item.formatProd+".html");
			//$("#envoieFiche").html("Voir la fiche");
		}

		
	});
});

