$(function (){
    $(".WEB_CONTE_buscador input").filter(function () {

        var default_value = "Buscar...";
        $(this).focus(function() {
            if(this.value == default_value) {
                this.value = '';
                 $(this).css({'background':'#f0f3f8'});
            }

        });
        $(this).blur(function() {
            if(this.value == '') {
                this.value = default_value;
                $(this).css({'background':'none'});
            }

        });


    })

});

