$(document).ready(function () {

    $('input#searchString').autocomplete(
        '/js/jquery/search.php',
        {
            minChars: 1,
            minNumbers: 1,
            max: false,
            width: 400,
            scroll: true,
            highlight: function (value, term) { return value },
            cacheLength: 0 
        }
    ).result(function (e, row) {
    	var regEx = /goto="([^"]+)"/i;
        regEx.exec(row);
        document.location.href=RegExp.$1;
    });

    document.getElementById('searchString').focus();
});
