
$(document).ready(setupAvailability);


$(document).ready(setupDetailPopup);

function setupAvailability() {
   $('td.ac_higlighted').click(function () {
      //kill selection from all & any
      $('.ac_higlighted').removeClass('ac_selected');

      //set date value
      $('#reservation_date').val(this.getAttribute('rel'));

      //add selection to clicked cell
      $(this).addClass('ac_selected');
   });
}


function setupDetailPopup() {
   $('.avm_detail_link').click(function () {
      //open bookings popup from link's href attribute
      window.open(this.href, 'avm_detail', 'width=600,height=300,scrollbars=yes');
      return false;
   });
}
