$(document).ready(function(){

	$("#inRecherche").autocomplete({
		source: "jeuxDB.php",
		minLength: 2,
		focus: function( event, ui ) {
				$( "#inRecherche" ).val( ui.item.label );
				return false;
			},
		select: function(event, ui) {
		
			$( "#inRecherche" ).val( ui.item.label );
			var nomFiche =  ui.item.value ;
		
			$(window.location).attr('href', "jeux-video.php?fiche="+nomFiche);
		
		return false;
		}
	});
			
});
