$(document).ready(function(){
  $('input[type=text], textarea').focus(function(){
    if (this.defaultValue == $(this).val()) { $(this).val('')} 
  });

  $('input[type=text], textarea').focusout(function(){
    if ($(this).val() == "") { $(this).val(this.defaultValue)} 
  });
});
