jQuery.fn.defaultVal = function(text) {
	return this.each(function() {
		$(this).blur(function() {
			if (!this.value) this.value = text;
		})

		.focus(function() {
			if (this.value == text) this.value = '';
		})

		.mouseover(function() {
			this.focus();
		})

		.blur();
   });
};

