/*window.addEvent('domready', function() {
	var inputWord = $('q');
	var auto = new Autocompleter.Request.JSON(inputWord, path+'api.php', {
		'indicatorClass': 'autocompleter-loading',
		'minLength': 2,
		onSelection:function(){
			window.location.href=path+'recherche-'+this.opted+'.html';
		}
	});
	$('recherche').addEvent('submit', function(){ window.location.href=path+'recherche-'+auto.element.get('value')+'.html'; });
});
*/
