/*
var contactForm = {
	orig : "",
	init : function() {
		var inputArray = $("#contact_right input[@type=text]");
		var inputLength = inputArray.length;
		for (i = 0; i < inputLength; i++) {
			addEvent(inputArray[i], 'focus', this.removeText);
			addEvent(inputArray[i], 'blur', this.replaceText);
		}
	},
	removeText : function() {
		contactForm.orig = this.value;
		this.value = "";
	},
	replaceText : function() {
		if (this.value == "") {
			this.value = contactForm.orig;
		}
	}
};

function pageLoader() {
	contactForm.init();
}

addEvent(window, 'load', pageLoader);
*/

function removeText(formField, theText) {
	if ( document.getElementById(formField).value == theText ) {
		document.getElementById(formField).value = "";
	}
}

function replaceText(formField, theText) {
	if ( document.getElementById(formField).value == "" ) {
		document.getElementById(formField).value = theText;
	}
}