(function($) {
	$.fn.fieldTitle = function(defVal) {
		
		this.focus(function () {
			var curVal = $(this).val();
			if (curVal == defVal) $(this).val('');
		});
		
		this.blur(function () {
			var curVal = $(this).val();
			if (curVal == '') $(this).val(defVal);
		});
		
		this.blur();
		
	};
})(jQuery);
