$(document).ready(function(){
	$('#competitions-sign-up').submit(function(){
		var flag = 0;
		$('.req').each(function(i){
			if( $(this).val() == "" || $(this).val() == null ){
				$(this).addClass('errorInput');
				$(this).focus();
				flag = 1;
			} else {
				$(this).removeClass('errorInput');
			}
		})
		$('.req_check').each(function(i){
			if( !$(this).get(0).checked ){
				$(this).addClass('errorInputC');
				$(this).focus();
				flag = 1;
			} else {
				$(this).removeClass('errorInputC');
			}
		})
		if( flag > 0 )return false;
	})
})