$(function(){

        // Datepicker
        $.datepicker.setDefaults({
                minDate: +5,
                maxDate: +180,
                defaultDate: +5,
                dateFormat: 'mm-dd-yy'
        });
        $('#pickup_date').livequery('click', function() {
            $(this).datepicker({
                showOn: 'focus'
            }).focus();

        });

        $('#dropoff_date').livequery('click', function() {
            $(this).datepicker({
                showOn: 'focus'
            }).focus();

        });
                                                //hover states on the static widgets
        $('#dialog_link, ul#icons li').hover(
                function() { $(this).addClass('ui-state-hover'); },
                function() { $(this).removeClass('ui-state-hover'); }
        );

});

