$(function(){
    
    // ##### RECUPERAR SENHA ####
    // Mostrar Caixa de Recuperar Senha
    $('#bt_perdeu_senha').click(function(evt){
        evt.preventDefault();
        $('#cv_perdeu_senha').fadeIn(600);
    })
    $('#cv_perdeu_senha input[type=text]').click(function(evt){
        evt.preventDefault();
        if($(this).val()==$(this).attr("title")){
           $(this).val(""); 
        }
    })    
    $('#cv_perdeu_senha input[type=text]').blur(function(){

        if($(this).val()==""){
           $(this).val($(this).attr("title")); 
        }
    })
    
    $('#form_perdeu_senha').submit(function(evt){
        evt.preventDefault();
        
        url = AJAX_URL+"/public/login.php";
        attr = "action=recuperar_senha&"+$(this).serialize();
        
 
        ajax_logic(url,attr);
        
    })
    
})
