$(function(){
	$("form#registerForm").submit(function(){
		var isValid = true;
		$("form#registerForm").find("input[type='text']").each(function(){
			if(typeof $(this).attr("value") == "undefined" || $(this).attr("value").length == 0){
				isValid = false;
			}
		})
		if(!isValid) {
			alert("Sorry, all fields are required in order to send your registration.");
		}
		else {
			alert("Thank you for registering! Please check your email for further information. Click OK to return to Cues' Educated Investor homepage.");
		}		
		return isValid;
	});
});
