// JavaScript Document
window.addEvent('domready', function() {

	var inputWord = $('ou');
	var test = new Autocompleter.Request.HTML(inputWord, 'includes/ajax-auto-communes-commerces.php', {
		'indicatorClass': 'autocompleter-loading', // class added to the input during request
		'minLength': 2, // We need at least 2 character
		//'selectMode': 'type-ahead', // Instant completion
		'multiple': false, // Tag support, by default comma separated
		'filterSubset': true 
	});
	//debugger;
	test.addEvent('onSelection', mafonction);

});
function mafonction(a,b,c,d) {
	if(b.id!=""&&b.title!="")
		document.location.href="http://www.atome77.com/villes/commune/"+b.id+"/"+b.title+".htm";
}