function checkAge() {
	var d = $('#ageDay').val();
	var m = $('#ageMonth').val();
	var y = $('#ageYear').val();

	if(d>0 && m>0 && y>=1920 && d<=31 && m<=12 && y<=2010) {
		var t = new Date();
		var a = ( t.getFullYear() - y - ((t.getMonth() - --m||t.getDate() - d)<0) );
		if(a>=14) {
			$('#regButton').slideDown(350);
		} else {
			$('#parentPermission').slideDown(350);
			$('#regButton').slideDown(350);
		}
	}
}


function fullRegistration() {
	window.birthdate = $('#ageYear').val() + '-' + $('#ageMonth').val() + '-' + $('#ageDay').val();
	$.ajax({ type: "POST", url: "/content/registration.php", data: "type=fullReg", success: function(html){ $("#regContainer").html(html); } });
}

function getGender(gender) {
	window.gender = gender;
	if(gender=='male') { 
		$('#imgFemale').animate({ opacity: 0.4 }, 700);
		$('#imgMale').animate({ opacity: 1.0 }, 700);
	}
	if(gender=='female') {
		$('#imgFemale').animate({ opacity: 1.0 }, 700);
		$('#imgMale').animate({ opacity: 0.4 }, 700);
	}
}

function confirmRegistration() {
	
}
