﻿$(document).ready(function() {
    changeInpPwd();

    //Mudar o tipo do input de senha no clique
    function changeInpPwd() {
        $('#ctl00_Login1_txtSenha_clean').show();
        $('#ctl00_Login1_txtSenha').hide();

        $('#ctl00_Login1_txtSenha_clean').focus(function() {            
            $('#ctl00_Login1_txtSenha_clean').hide();
            $('#ctl00_Login1_txtSenha').show();
            $('#ctl00_Login1_txtSenha').focus();
        });

        $('#ctl00_Login1_txtSenha').blur(function() {
            if ($('#ctl00_Login1_txtSenha').val() == '') {                
                $('#ctl00_Login1_txtSenha_clean').show();
                $('#ctl00_Login1_txtSenha').hide();
            }
        });
    }
});
