function selectItem(li) {
    $("#autocomplete").trigger('submit');
}
function formatItem(row) {
    return "<div class='autocomplete-item'>" + row[0] + "</div><span style='float:right;margin-right:10px;'>" + row[1] + row[2] +" </span>";
}
$(document).ready(function() {
    $("#searchsimple").autocomplete(siteRoot+"apps/search/searches.php",
    {
        minChars:3,
        max: 10,
        matchSubset:1,
        matchContains:1,
        cacheLength:10,
        width:540,
        onItemSelect:selectItem,
        formatItem:formatItem,
        selectOnly:1,
        maxItemsToShow:15
    });
});
