$(document).ready(function(){
    function liFormat (row, i, num) {
        var result = row[0];//+ '<span class=qnt>' + row[1] + '</span>';
        return result;
    }
    function selectItem(li) {
        var sValue;
        if( li == null ) sValue = '';
        if( !!li.extra ) sValue = li.extra[1];
        else sValue = li.selectValue;
        if (sValue != ''){
            window.location = 'http://' + window.location.hostname + '/search?q=' + sValue + '&c=&a=' ;
        }
    }

});
