$(document).ready(function() {
						   
	$("#dob_month, #dob_date").addClass("validate[required]");
	$("#dob_year").addClass("validate[required,ajax[ajaxDOB]]");

	if ($("#ajax").length == 0)
	{
		$("#signup_form").validationEngine();
	}
	else // there isn't a lot of room on ajax popups, so move the prompts
	{
		$("#signup_form").validationEngine({promptPosition: "bottomLeft"});
	}
	
})	
