$(document).ready(
	function() {
		var inputs = $("input[rel~=clear]");
		inputs.focus(
			function(e) {
				if(this.value == this.defaultValue) {
					this.value = "";
					$(this).removeClass("default")
				}
			}
		);
		inputs.blur(
			function(e) {
				if(this.value == "") {
					this.value = this.defaultValue;
					$(this).addClass("default")
				}
			}
		);
		inputs.addClass("default")
	}
);
	