$(document).ready(function(){
    
    $("#tx-anliegennavigation-pi1-search").autocomplete(
        {
        url:"http://" + top.location.host + top.location.pathname + "?eID=anliegennavigation&sr=" + sr + "&sh=" + sh + "&lang=" + lang + "",
        result:selectAnliegen,
        matchContains: true
        }
    );
    
    function selectAnliegen(event, data, formatted)
    {
         var language = '';
         
         if (lang !== 0) {         
            language = data[1].indexOf("?") !== -1 ? '&L=' + lang : '?L=' + lang;
         }
         
         window.location.href = "index.php" + data[1] + language;
    }
});