// Clear form on focus and fix form on blur
// Assumes the e-mail form is the only (first) form on the page
// Couldn't use the actual names cause JavaScript interprets the "-" as a minus

function clearForm() {
	if(document.email_form.elements['cm-nmah-nmah'].value == "your e-mail here") {
		document.email_form.elements['cm-nmah-nmah'].value = "";
	}
	else if(document.email_form.elements['cm-nmah-nmah'].value == "") {
		document.email_form.elements['cm-nmah-nmah'].value = "your e-mail here";
	}
}
