
	$(document).ready(function(){
        // clear input on focus, if still in default
        $(".data").focus(function() {

          if($(this).val()==$(this).attr("value")) {
            $(this).val("");
          }
        });

        // if field is empty afterward, add text again
        $(".data").blur(function() {
          if($(this).val()=="") {
            $(this).val($(this).attr("value"));
          }
        });

      });
      
	$(document).ready(function(){
        // clear textarea on focus, if still in default
        $(".data").focus(function() {

          if($(this).val()==$(this).attr("value")) {
            $(this).val("");
          }
        });

        // if field is empty afterward, add text again
        $(".data").blur(function() {
          if($(this).val()=="") {
            $(this).val($(this).attr("value"));
          }
        });

      });

