$(document).ready(function(){
$('#password-clear').show();
$('#txtPassword').hide();

$('#password-clear').focus(function() {
    $('#password-clear').hide();
    $('#txtPassword').show();
    $('#txtPassword').focus();
	
});
$('#txtPassword').blur(function() {
    if($('#txtPassword').val() == '') {
        $('#password-clear').show();
        $('#txtPassword').hide();
    }
});
});


$(document).ready(function(){
$('#user-clear').show();
$('#txtUserID').hide();

$('#user-clear').focus(function() {
    $('#user-clear').hide();
    $('#txtUserID').show();
    $('#txtUserID').focus();
});
$('#txtPassword').blur(function() {
    if($('#txtUserID').val() == '') {
        $('#user-clear').show();
        $('#txtUserID').hide();
    }
});
});
