﻿$(document).ready(function () {

//Auto Add Text if box is empty
var initialText = $(".autoText").attr('value');

$(".autoText").blur(function () {
    
    if ($(this).attr("value") == "") {
        $(this).attr("value", initialText)
    };
});
$(".autoText").focus(function () {

    if ($(this).attr("value") == initialText) {
        $(this).attr("value", "")
    };
});


});
