jQuery.fn.extend({
	neverEmpty: function() {
		return this.each(function() {
			var p = $(this);
			p.data("neverEmptyDefault",p.val());
			p.focusin(function(e) {
				if($(this).val() == $(this).data("neverEmptyDefault")) {
					$(this).val("");
				}
			});
			p.focusout(function(e) {
				if($(this).val() == "") {
					p.val($(this).data("neverEmptyDefault"));
				}
			});
		});
	}
});
