
	$(document).ready(function() {
		
		$('#frmChallenge').submit(function() {
			$("#ajaxLoader").show();
			$("#submitChallenge").hide();
		});
		
		
	});

	function stopUpload(success) {
		if (success == 1) {
			$("#ajaxLoader").hide();
			$("#submittedChallenge").show();
		} else {
			alert("nope");
		}
	}
