/*	Functions to handle case submittal form events */
// Function for form field mouseout
function mouseOut(){
	if (!this.hasFocus){
		this.style.backgroundColor	= "#fff";
		this.style.color			= "#987";
	}
}

