DD_roundies.addRule('#container, .submit, .button', '6px', true);
DD_roundies.addRule('#header', '6px 6px 0 0', true);
DD_roundies.addRule('#search, .textarea_container, .textinput_container', '3px', true);
DD_roundies.addRule('#cms_container', '0 0 6px 6px', true);
DD_roundies.addRule('#cms_content', '0 0 0 6px', true);
DD_roundies.addRule('.flags a', '10px', true);

$(document).ready(function() {
    var initial_query_value = $('#query').val();
    $('#query').focus(function() {
        if ($(this).val() == initial_query_value) {
            $(this).val('');
        }
    });
    
    $('#query').autocomplete('/companies/', {'delay':100}).result(function(event, item) {
        location.href = item[1];
    });
});