I was recently on a similar mission and I eventually settled with jQuery UI's autocomplete. I am currently using jQuery UI 1.6rc2 and the autocomplete plugin is very well implemented and customizable. Here's an example:
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="ui.core.js"></script>
<script type="text/javascript" src="ui.autocomplete.js"></script>
<script type="text/javascript">
$('#search').autocomplete({
url: 'suggestions.php',
width: 300,
max: 10,
delay: 100,
cacheLength: 1,
scroll: false,
highlight: false
});
</script>
