$().ready(function() {
	$('#searchKeywords').autocomplete("/searchnodes", {
		delay:100,
        cacheLength:1,
        matchSubset:0,
        selectFirst:false,
        selectOnly:false,
        minChars: 4,
        width: 264,
        scrollHeight: 337,
        max: 15
    }).result(function(event, selected, formatted) {
    	window.location.href = selected[1];
        return false;
    });
});
