﻿$(document).ready(function () {
    // Remove and restore text in imout fields
    $("input[type='text'], textarea").not(".keepDefault").focus(function () {
        if (this.value == this.defaultValue) {
            $(this).val("");
        }
    });
    $("input[type='text'], textarea").not(".keepDefault").blur(function () {
        if (this.value == "") {
            $(this).val(this.defaultValue);
        }
    });
});
