Shadowbox.init();
$(function() {
    if($('#datepicker').length > 0) {
        $('#datepicker').datepicker({
            changeMonth:1,
            changeYear:1,
            minDate:1,
            onSelect: function(date) {
               location.replace('?action=request&date='+date);
           }
        });
    }
    if($('.dp').length > 0) {
        $('.dp').datepicker({buttonImage:'./images/calendar.png', showButtonPanel: true, buttonImageOnly:true, showOn:'both' });
    }
    if($('#map').length > 0) {
        $('#map').jqmap();
    }
});    

