document.observe("dom:loaded", function() {
	if($('suche'))
	{
		$('suche').insert({after: '<span id="indicator1" style="display:none;position:absolute;right:48px;top:12px;"><img src="/media/images/chrome/load.gif" alt="Working..." /></span>'});
		$('suche').insert({after: '<div id="suggests"></div>'});
		$('suche').setAttribute('autocomplete', 'off');
		new Ajax.Autocompleter('suche', 'suggests', '/suchwort/?location=' + encodeURI(window.location.pathname), {
			//parameters:'isajax=1&suggest=1&location='+window.location.pathname+'&kategorie_suche='+$F('kategorie_suche'),
			// callback: function(){alert('hier');},
			afterUpdateElement: function(e){e.up('form').submit();}
			//indicator: 'indicator1',
			
		});
	}
});
