$(document).ready(function(){
    $("#consulta #_cpf").click(function(){
        $(this).val("");
    });
    
    $("#close").click(function(){
        /*
       $.post("logout.php",{
           cpf: true
       },
       function(data){
          $(".account").slideUp('fast');
         
       },function(){
            window.location.href='index.php';
       });
       */
         window.location.href='logout.php';
    });
    
    $("#consulta").hover(function(){
        var balao = $(this).find('img');
        $(balao).fadeIn('slow');
    },
    function(){
        var balao = $(this).find('img');
        $(balao).fadeOut('slow');
    });

    $("#consulta").submit(function(){
        
        valor = $("#_cpf").val();
        _senha = $("#_senha").val();
       
        $.post("buscar_cpf.php",
        {
            cpf: valor,senha:_senha
        },
        function(data){
            $(".header").append(data);
            $("#close").click(function(){
               //$(".account").slideUp('fast');
               window.location.href='logout.php';
            });
             
        });
      return false;
    });
    
});

