document.observe("dom:loaded", function() { var newDiv = new Element('div', { 'id': 'search_results' }); $$('body').first().insert(newDiv); $('search_results').addClassName('ac_results'); $$('input[name=s]').each(function(elm){ setAutoCompleter(elm); }); }); function setAutoCompleter(elm){ new Ajax.Autocompleter(elm, 'search_results', 'http://blog.jaffamonkey.com/wp-content/plugins/kau-boys-autocompleter/autocompleter_results.php?lang=', { paramName: 'q', tokens: ',', updateElement: function(li){ document.location.href = li.down('a').href; } }); }