// Set the current date in the booking engine calendar

$(document).ready(function(){ 
    // Get today's date
    var currentDate = new Date();
    
    var theDay = currentDate.getDate() - 1;
    var theMonth = currentDate.getMonth();
    
    // Update the select boxes
    document.getElementById("arrivald").selectedIndex = theDay;
    document.getElementById("arrivalm").selectedIndex = theMonth;
});

