﻿$(document).ready(function() {
// Handler for .ready() called.

    //hided password text in header login box
    $("#txtPasswordLabel").click(function() {
        $("#txtPasswordLabel").hide();
        $("#txtPassword").focus();
    });
    $("#txtPassword").click(function() {
        $("#txtPasswordLabel").hide();
        $("#txtPassword").focus();
    });



});
