 $(function(){
  $("#suiteslink").click(function(event){
    event.preventDefault();
    $('#test').toggle();
  })
 })

 $(function(){
  $("#resort").click(function(event){
    event.preventDefault();
    $('#resorttable').toggle();
  })
 })

 $(function(){
  $("#cuisinelink").click(function(event){
    event.preventDefault();
    $('#cuisinetable').toggle();
  })
 })
 
  $(function(){
  $("#amenitieslink").click(function(event){
    event.preventDefault();
    $('#amenitiestable').toggle();
  })
 })
  
   $(function(){
  $("#wellbeinglink").click(function(event){
    event.preventDefault();
    $('#wellbeingtable').toggle();
  })
 })
   
   $(function(){
  $("#otherlinks").click(function(event){
    event.preventDefault();
    $('#otherlinkstable').toggle();
  })
 })
   
    $(function(){
  $("#locationslink").click(function(event){
    event.preventDefault();
    $('#locationstable').toggle();
  })
 })
    
     $(function(){
  $("#rateslink").click(function(event){
    event.preventDefault();
    $('#ratestable').toggle();
  })
 })




