
// Accordian List

$(document).ready(function() {
 // hides the bibliography as soon as the DOM is ready
 // (a little sooner than page load)
  $('#bibliography').hide();
 
 // toggles the slickbox on clicking the noted link 
  $('a#biblio-toggle').click(function() {
    $('#bibliography').slideToggle(500);
    return false;
  });
 
});


$(document).ready(function() {
 // hides the hotels as soon as the DOM is ready
 // (a little sooner than page load)
  $('#hotels').hide();
 
 // toggles the slickbox on clicking the noted link 
  $('a#hotels-toggle').click(function() {
    $('#hotels').slideToggle(500);
    return false;
  });
 
});


$(document).ready(function() {
 // hides the hotels as soon as the DOM is ready
 // (a little sooner than page load)
  $('#plan').hide();
 
 // toggles the slickbox on clicking the noted link 
  $('a#plan-toggle').click(function() {
    $('#plan').slideToggle(500);
    return false;
  });
 
});