/*window.onload = function () {
	new Ajax.Autocompleter("function_name", "autocomplete_choices", base_url()+"home/search/", {});

	$('function_search_form').onsubmit = function () {
		inline_results();
		return false;	
	}
}

function inline_results() {
	new Ajax.Updater ('sottotitolo_it', base_url+'home/search', {method:'post', postBody:'sottotitolo=true&oggetto='+$F('oggetto')});
	new Effect.Appear('sottotitolo_it');

}
*/

window.onload = function () {
	new Ajax.Autocompleter("function_name", "autocomplete_choices", base_url+"home/ajaxsearch/", {});

	$('function_search_form').onsubmit = function () {
		inline_results();
		return false;	
	}
}

function inline_results() {
	new Ajax.Updater ('function_description', base_url+'home/ajaxsearch', {method:'post', postBody:'description=true&function_name='+$F('titolo_it')});
	new Effect.Appear('function_description');

}
