$(document).ready(function() {
        $('.tabs').tabs();

        $('span.autofill').prev().fill_clear_input({
                contents: function(elm,ind){
                        return $(elm).next().text();
                }
        });

        $('#search').click(function(e) {
                $(this).attr('value', '');
        });
});


