jQuery(document).ready(function() {
	jQuery.fn.blank = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	};
jQuery("#first_name").blank();
jQuery("#last_name").blank();
jQuery("#email").blank();
});

