catcompleteのドキュメントを見つけようとしました。_renderItemの使い方のマニュアルが必要です。私はこのhttp://jqueryui.com/autocomplete/#categoriesを見つけましたが、それについては_renderMenuの単なる例については言及されていないようです
_renderMenu: function( ul, items ) {
var that = this,
currentCategory = "";
$.each( items, function( index, item ) {
if ( item.category != currentCategory ) {
ul.append( "<li class='ui-autocomplete-category'>" + item.category + "</li>" );
currentCategory = item.category;
}
that._renderItemData( ul, item );
});
}