function swapDefault() {	$("input.blankout").each(function() {		$(this).focus(function() {			if(this.defaultValue && this.value == this.defaultValue) this.value = "";			$(this).addClass("focus");		}).blur(function() {			if(this.defaultValue && !this.value.length) this.value = this.defaultValue;			$(this).removeClass("focus");		});	});}
