
    $(document).ready(function() {
        $("#pick_up_date").datepicker({
			inline: true, 
			minDate: new Date(),
			maxDate: '+1y',
			appendText: '<br/>(mm/dd/yyyy)',
			defaultDate: 0,			
            numberOfMonths: 2
			
		});
				
        $("#return_date").datepicker({
			inline: true,
			minDate: new Date(),
			maxDate: '+1y',
			appendText: '<br/>(mm/dd/yyyy)',
			defaultDate: +1,
			numberOfMonths: 2
		});
        
        // hover states on the static widgets
        $('#dialog_link, ul#icons li').hover(
         function() { $(this).addClass('ui-state-hover'); }, 
         function() { $(this).removeClass('ui-state-hover'); }
        );
    });
        

