$(document).ready(function(){
    var dataURL = "/components/search-keywords.html";

    $('#tag_name').autocomplete('/components/tag-names.html',
        {minChars:0,
        mustMatch:false}
    );

    $('#search_q').autocomplete(dataURL,
    {minChars:0,
    mustMatch:false}
    );
});
