I would suggest trying something along the lines of truncating the results and putting the full text of the result in the hover header text.
You can trim the result text with css:
.ui-menu-item a { max-width:100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
I added a fiddle to rusln to demonstrate ...
source share