// JavaScript Document
// LDA Logic
$(document).ready(function () {
	$("#lda-form").submit(function(){
		var day = $("#day").val();
		var month = $("#month").val();
		var year = $("#year").val();
		var age = 18;
		var mydate = new Date();
		mydate.setFullYear(year, month-1, day);
		var currdate = new Date();
		currdate.setFullYear(currdate.getFullYear() - age);
		if ((currdate - mydate) < 0){
				$("#content").replaceWith('<div id="content">' +  '<p>Sorry, you must be of legal drinking age (18 and older) <br>to enter the Grolsch Green Light District.<br><br></p>' + '<p><a href="/index.html"><img src="/images/map/ok.jpg" alt="OK" border="0"></a></p>' + + '</div>');
			return false;
		}
		return true;
	});
});
