jQuery(document).ready(function(){
	    jQuery('#example').datepicker();
		jQuery('#exampleRange').datepicker({rangeSelect: true, firstDay: 1});
	  });
	  
	function chg_children(kids){ //This function will change how many birthdays are described
		var num_kids = parseInt(kids);
		if(num_kids > 0){
			for(var i=1; i<=num_kids; i++){
				kid_string = "kid_" + i;
				document.getElementById(kid_string).style.display = "";
				document.getElementById(kid_string).value = "Child #"+i+" Birthday";
			}
			for(var i=(num_kids+1); i<=5; i++){
				kid_string = "kid_" + i;
				document.getElementById(kid_string).style.display = "none";
				document.getElementById(kid_string).value = "Child #"+i+" Birthday";
			}
		}
		else{
			for(var i=1; i<=5; i++){
				kid_string = "kid_" + i;
				document.getElementById(kid_string).style.display = "none";
				document.getElementById(kid_string).value = "";
			}
		}
	}
	
	function chg_need_airfare(need_airfare){
		if(need_airfare == "YES"){
			document.getElementById("departure_city").style.display = "";
		}
		else {
			document.getElementById("departure_city").style.display = "none";
		}
	}
