(function($) {$.fn.ClearInput = function() {	/*	$(this).each(function() {		var DefaultValue = this.defaultValue;		$(this).focus(function(){			var CurrValue = $(this).val();			if(CurrValue == DefaultValue) {				$(this).val("");			}		});		$(this).blur(function(){			var CurrValue = $(this).val();			if(CurrValue.length == 0) {				$(this).val(DefaultValue);			}		});	});	*/}})(jQuery);
