function highlightDays(date) {
	var weekDay = date.getDay();
	weekDay1 = null;
	weekDay2 = null;
	if($("#toCountry").val()==1){ weekDay1 = 2; weekDay2 = 5; }
	if($("#toCountry").val()==2){ weekDay1 = 4; weekDay2 = 0; }
	if(weekDay == weekDay1 || weekDay == weekDay2) {
		return [true, 'flight'];
	}
	return [true];
}
$("#dateFrom").datepicker({ minDate : '0', beforeShowDay : highlightDays, });

function checkChildAge(){
	$("#childAge1").attr('disabled', 'disabled');
	$("#childAge2").attr('disabled', 'disabled');

	if($("#hotelStayId").val()==4){
		$("#childAge1").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==5){
		$("#childAge1").removeAttr('disabled');
		$("#childAge2").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==6){
		$("#childAge1").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==7){
		$("#childAge1").removeAttr('disabled');
		$("#childAge2").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==8){
		$("#childAge1").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==9){
		$("#childAge1").removeAttr('disabled');
		$("#childAge2").removeAttr('disabled');
	}
	if($("#hotelStayId").val()==11){
		$("#childAge1").removeAttr('disabled');
	}
}

checkChildAge();

