Need help with autocomplete script

so far this script is good but i want it to be clickable and drop down for all email networks yahoo,gmail,aol,hotmail etc it has similarities to myspaces autocomplete that it displays keywords right next to the terms as you type so far i got

$(function() {

$.ui.autocomplete.prototype._renderItem = function (ul, item) {
item.label = item.label.replace(new RegExp(“(?![^&;]+;)(?!<[^<>])(" + $.ui.autocomplete.escapeRegex(this.term) + ")(?![^<>]>)(?![^&;]+;)”, “gi”), “<strong>$1</strong>”);
return $(“<li></li>”)
.data(“item.autocomplete”, item)
.append(“<a>” + item.label + “</a>”)
.appendTo(ul);
};

var networks = [
@Yahoo.com”,
@Hotmail.com”,
@AOL.com”,
@GMail.com”,
];
$( “#loginemailaddress” ).autocomplete({
source: networks,
messages: {
noResults: ‘’,
results: function() {}
}
});
});

any help would be appreciated