jQuery.fn.eValidate = function() {
		if ($(this).val().indexOf("@") < 1){
			alert('The email address you entered does not appear to be valid.  Please check your entry and try again.');
			valid=false;
		} else if ($(this).val().split("@")[1] == "yahoo.com" || $(this).val().split("@")[1] == "ymail.com" || $(this).val().split("@")[1] == "aol.com" || $(this).val().split("@")[1] == "hotmail.com") {
			alert('Our mail server does not allow e-mail from most "hotmail" "yahoo" and "aol" accounts due to their propensity for spamming. Other well-known spam sources are also blocked. Additionally, due to false reporting and increasing misuse of these domains we are no longer accepting them for registration.\n\nWe apologize for any inconvenience.  Please use another email address, or call us with any questions.  In some cases we can allow these domains with your personal approval and confirmation.');
			valid=false;
		} else {
			valid=true;
		};	
};