﻿
$(function () {

  $('.txtBusca').hint();
  $(".txtBusca").focus(function () {
    $(this).val("");
  });


    $('.btBuscar').qtip(
                { position: {
                    corner: {
                        target: 'bottomMiddle',
                        tooltip: 'topMiddle'
                    }
                },
                    style: {
                        padding: '7px 10px',
                        tip: true,
                        fontWeight: 'bold',
                        textAlign: 'center',
                        name: 'cream'
                    }
                });

    $('.btLimpar').qtip(
                { position: {
                    corner: {
                        target: 'bottomMiddle',
                        tooltip: 'topMiddle'
                    }
                },
                    style: {
                        padding: '7px 10px',
                        tip: true,
                        fontWeight: 'bold',
                        textAlign: 'center',
                        name: 'cream'
                    }
                });


});

function validaBuscaGeral() {
  if (($('.txtBusca').val() != 'Faça sua pesquisa') && ($('.txtBusca').val().length >= 3)) {
        return true;
    }
    else {
        alert("Entre com o texto a buscar com pelo menos 3 digitos.");
        return false;
    }
}
			
 
