
$(document).ready(function() {
						  
	$("#employApp").submit(function () {
		if( $('#agree_to_terms').attr('checked') == false ) {
			alert("Please agree to the terms before submitting.");
			return false;
		} else {
			$("#submitAppButton").hide();
			$("#loadingBar").show();
		}
	});

});

