(function($) {
  $(function () {
    $("input[type='text']").focus(function() {
      if (this.value == this.defaultValue) {
         this.value = '';
       }
    });
  });
})(jQuery);