
jQuery(document).ready(function () {
    var autosuggestOptions = {
        ajax_file_path      : "/ajax/autosuggest.php",
        min_keyword_length  : 3,
        showLoadingImage    : true,
//      focus_color         : "#FF9934",
        keyupDelay          : 500,
        id_element          : "id-holder",
        sql_match_type      : "starts",
        es_width            : "auto",
        es_opacity          : 0.92,
        es_max_results      : 10
//        es_offset_left      : 0,
//        es_offset_top       : -5            
    };
    
    if (jQuery("#searchpanel_inputSearchPhrase")) {        
        autosuggestOptions['source'] = 'events';
        jQuery("#searchpanel_inputSearchPhrase").jqEasySuggest(autosuggestOptions);
    }
    if (jQuery("#searchpanel_inputSearchPhrase")) {
        autosuggestOptions['source'] = 'cities';
        jQuery("#searchpanel_inputPLZ").jqEasySuggest(autosuggestOptions);
    }
});

