jQuery.noConflict();

function hide() {
    setTimeout("jQuery('#suggestions').hide()", 200);
} // hide

function lookup(inputString) {
    if(inputString.length == 0) {
        // если длина нулевая то скрываем блок выбор
        hide();
    } else {
        jQuery.post("/cable/ajax_search.php", {q: ""+inputString+""}, function(data){
            if(data.length > 0) {
                jQuery('#suggestions').show();
                jQuery('#autoSuggestionsList').html(data);
            }
        });
    }
} // lookup

function fill(thisValue) {
    jQuery('#inputString').val(thisValue);
    hide();
} // fill