(function($)
{
	$.fn.defaultValueInput = function()
	{
		return $(this).each(function() 
		{
			$(this).focus(function()
			{
        		if (this.value == this.defaultValue)
        		{
        			this.value = "";
        		}
			}).blur(function()
			{
        		if (this.value.length == 0)
        		{
        			this.value = this.defaultValue;
        		}
			});
		});
	}
})(jQuery)
