document.addEvent('domready', function() {
 
	/**
	 * Simple example, backend returns a list of <li> elements,
	 * processed by Autocompleter.Request.HTML.
	 */
	var inputWord = $('name');
 
	new Autocompleter.Request.HTML(inputWord, 'includes/card-name-search.php', {
		  postData: {html: 1}, //some data to go along with the request
		'indicatorClass': 'autocompleter-loading'// class added to the input during request
		
	});
 

});

