$(function() {
  
  Flydowns = {
    show_free: function() {
      $('#phonebooth_free_flydown').show();
      $('#phonebooth_free').addClass('hover');
    },
    hide_free: function() {
      $('#phonebooth_free_flydown').hide();
      $('#phonebooth_free').removeClass('hover');
    },
    show_ondemand: function() {
      $('#phonebooth_ondemand_flydown').show();
      $('#phonebooth_ondemand').addClass('hover');
    },
    hide_ondemand: function() {
      $('#phonebooth_ondemand_flydown').hide();
      $('#phonebooth_ondemand').removeClass('hover');
    }
  }
  
  $('#phonebooth_free').hover(Flydowns.show_free, Flydowns.hide_free);
  $('#phonebooth_free_flydown').hover(Flydowns.show_free, Flydowns.hide_free);
  
  $('#phonebooth_ondemand').hover(Flydowns.show_ondemand, Flydowns.hide_ondemand);
  $('#phonebooth_ondemand_flydown').hover(Flydowns.show_ondemand, Flydowns.hide_ondemand);
  
});