jQuery.fn.focusClear = function() {
  
  var value = $(this).attr('value');

  this.focus(function() {
    if($(this).attr('value') == value)
      $(this).attr('value', '')
  });

  this.blur(function() {
    if($(this).attr('value') == '')
      $(this).attr('value', value)
  });

  return this;
};