$(document).ready(function() {
    $(".bgConteudoPag .colD .boxSelectArea select").sSelect();

    blurFocus('.formBusca .busca', 'O que você Procura?');

});


function blurFocus(objeto, texto) {
    $(objeto).blur(function () {
        if ($(this).attr('value') == '') {
            $(this).attr('value', texto);
        }
    });
    $(objeto).focus(function () {
        if ($(this).attr('value') == texto) {
            $(this).attr('value', '');
        }
    });
}

function exibeTotal() {

    $(".boxEnquete .boxPerguntas .txtResp b").show();

}
