$(document).ready(function () {
    var ajaxUrl = window.location.protocol + "//" + window.location.host + "/sites/all/themes/commhouse/layers/presentation/NodePO.php";

    $('#edit-search-block-form-1').autoSuggest(ajaxUrl, {
        minChars: 2,
        selectedItemProp: "Title",
        searchObjProps: "Title",
        keyDelay: 200,
        resultsHighlight: false,
        resultClick: function (data) {
            /* Geselecteerde waarde invullen in het zoekveld */
            $('.as-original input').val(data.attributes.Title);

            /* Eventueel zoekstatistieken bijhouden */

            /* Form submitten */
            $('#search-block-form').submit();
        },
        formatList: function (data, elem) {
            var my_image = "<img src='" + window.location.protocol + "//" + window.location.host + "/sites/all/themes/commhouse/img/searchIcons/" + data.type.toLowerCase() + ".png' />";
            var new_elem = elem.html(my_image + data.Title);
            return new_elem;
        }
    });
});
