// JavaScript Document
(function( $ ){
  $.fn.removeValue = function() {
	  
	  this.each(function() {
		  
  
    		$(this).focus(function(e) {
                if(this.value == this.defaultValue){
						
					this.value = "";
						
				}
            });
			$(this).blur(function(e) {
                if(this.value == ""){
						
					this.value = this.defaultValue;
						
				}
      		});
	  });

  };
})( jQuery );
