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

