Autocomplete plugin replicates tab's HTML instead of showing suggestions

Autocomplete plugin replicates tab's HTML instead of showing suggestions

Hello,
I am now using JQuery(1.3.22) and JQuery UI(1.7.2) for a small proof-
of-concept project.
I am using UI and a visual plug-in, the autocomplete one from
vulgarisoip.com .
Plugin version is the latest available(http://www.vulgarisoip.com/
files/jquery.suggest.js) as of 2007, there's been no update that I'm
aware of(yes, I looked for it in the plugins portal...) .
This is my code:
<script type="text/javascript">
$(document).ready(function(){
                        $('#tabs').tabs();
                        $('#comune').change(
                                        function( {

$('#comune').suggest('http://'+

'localhost/'+

'LiveCap/'+

'LiveCap'+

'CGI.exe/'+

'comune?'+

'nome'+

'comune=' +

$('#comune').val(),

{});
                                             });
                                        });
</script>
Relevant HTML is:
<div id="tabs">
<ul>
<li><a href="#tabs-1">Anagrafica</a></li>
</ul>
<div id="tabs-1">
Comune: <input type="text" id="comune"/>
</div>
</div>
I'm sorry for the URL which is awful, but it should be understandable.
The desired result is:
A tab with an autocomplete text edit. When the user adds a letter, the
autocomplete
updates to reflect the change.
What I currently obtain is:
A tab with an autocomplete text edit. When the user adds a letter,
the HTML code of the tab is replicated, all styles are off and it
keeps
being replicated this way as more letters are added.
Full URL for the suggest data is:
http://localhost/LiveCap/LiveCapCGI.exe/comune?nomecomune=
This is expanded here in case there was some mistake in reporting it
earlier.
I know there's a list specific for plug-ins, but since also UI html
data is repeated, maybe it's better to ask it here?
I have looked around and it looks like it wasn't updated in a long
time, so maybe it's just broken for the current release?
Any directions/pointers are hugely appreciated.
Thank you for reading all of this and please be patient with a JQuery
noob.
Andrew
--