$(function(){
    $("#autocomplete").autocomplete({
    source: "http://www.thebeerspot.com/search.php",
    minLength: 2,//search after two characters
    html: true,
        select: function(event, ui) {  
            location.href=ui.item.url;
        }
    });
    $.ui.autocomplete.prototype._renderItem = function( ul, item) {

    var listItem = $( "<li></li>" )
    .data( "item.autocomplete", item )
    .append( $( "<a></a>" )[ this.options.html ? "html" : "text" ]( item.label ) )
    .appendTo( ul );
    
    return listItem
    };
    

});
