
	$( "#returnTime" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date(),
			defaultDate: +1
	});
	
	$( "#carryTime" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			
			minDate: new Date(),
			onSelect:function(dateText, inst) {
				$( "#returnTime" ).val(GetDateStr2(dateText,1));
				$( "#returnTime" ).datepicker( "option", "minDate", GetDateStr2(dateText,1));

			}
		});
		
		
	$( "#returnTime1" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date(),
			defaultDate: +1
	});
	
	$( "#carryTime1" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			
			minDate: new Date(),
			onSelect:function(dateText, inst) {
				$( "#returnTime1" ).val(GetDateStr2(dateText,1));
				$( "#returnTime1" ).datepicker( "option", "minDate", GetDateStr2(dateText,1));
			}
		});
		
		$( "#withTime" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date()
		});
		$( "#air-away-time" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date(),
			beforeShow: function(input, inst) {
				$(".airport-button").each(
					function(){
						$(this).attr('style',"z-index:99");
					}
				);
			},
			onClose: function(dateText, inst) {
				$(".airport-button").each(
					function(){
						$(this).attr('style',"z-index:99999");
					}
				);
			}
		});
		
		$( "#away-air-time" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date(),
			beforeShow: function(input, inst) {
				$(".airport-button").each(
					function(){
						$(this).attr('style',"z-index:99");
					}
				);
			},
			onClose: function(dateText, inst) {
				
				$(".airport-button").each(
					function(){
						$(this).attr('style',"z-index:99999");
					}
				);
			}
			
			
		});
		
		
		
		$( "#rountTime" ).datepicker({
			showOn: 'both',
			buttonImage:'http://images.wodingche.com/images/frontend/index/date.gif',
			buttonImageOnly:true,
			showOtherMonths: true,
			selectOtherMonths: true,
			minDate: new Date()
		});
		
		
		
		
