/*	Functions to handle case submittal form events */
// Function for form field onblur
function onBlur(){
	if (this.value.replace(/^\s*/gi, "") == ""){
		this.value 					= this.defaultValue;
	}
	this.hasFocus					= false;
	this.style.backgroundColor		= "#fff";
	this.style.color				= "#987";
}
