﻿
    $(document).ready(function () {
        var value;

        $("input[type='text'], textarea, input[type='password']").focus(function () {
            value = $(this).val();
            $(this).val("");
        });
        $("input[type='text'], textarea, input[type='password']").blur(function () {
            if ($(this).val() == "") {
                $(this).val(value);
            }
        });
    });

