$(document).ready(function() {

	if (window.location.href.indexOf('kerstavond')>-1) {
		$('#dag').html($('#dag').html().replace('<option value="woensdag">Woensdag</option>', '<option value="maandag">Maandag</option><option value="woensdag">Woensdag</option>'));
	}

	$('#kerst').hide();
	$('#fld_kerst').attr('disabled', 'disabled');
	
	function checkKerst() {
		if ($('#dd').val() == 24 && 
		$('#maand').val() == 'December' && 
		$('#jaar').val() == 2011) {
			$('#kerst').show();
			$('#fld_kerst').attr('disabled', '');
		}
		else {
			$('#kerst').hide();			
			$('#fld_kerst').attr('disabled', 'disabled');
		}
	}
	
	$('#dd').change(function() { checkKerst(); });
	$('#maand').change(function() { checkKerst(); });
	$('#jaar').change(function() { checkKerst(); });
});
