$( function()
{
	$.fn.resetDefaultValue = function()
	{
		function _clearDefaultValue() {
			var _$ = $(this);
			if ( _$.val() == this.defaultValue ) { _$.val('').addClass( "init" ); }
		};
		function _resetDefaultValue() {
			var _$ = $(this);
			if ( _$.val() == '' ) { _$.val(this.defaultValue).removeClass( "init" ); }
		};
		return this.click(_clearDefaultValue).focus(_clearDefaultValue).blur(_resetDefaultValue)
	};
});
