jQuery(function($) {
    $('#search').bind('click', function() {
        $('#search input').focus();
    });
    $('#search input').bind('focus', function() {
        if(this.value == 'Pesquisa') {
            this.value = "";
        }
    }).bind('blur', function() {
        if(this.value == '') {
            this.value = 'Pesquisa';
        }
    });

    $('.post table').css('width', '100%');
});

