
	(function($){
		$.fn.inputmessage = function(text) 
		{
			this.attr('value',text);
			this.focus(function(event)
			{
				if ( $(this).attr('value') == text ) $(this).attr('value','');
			});
			this.blur(function(event)
			{
				if ( $(this).attr('value') == '' ) $(this).attr('value',text);
			});
			return this;
		};
	})(jQuery);
	
	
