/**
 * Vertical tabs, aka drawers
 * @author Bevan Rudge drupal.geek.nz
 * @license GPL 2
 */

$(function() {
  /* Activate vertical tabs */
  $('.vertical-tabs > ul').tabs({
      fxSlide: true,
      fxSpeed: 'fast'
    });

  /* Find the height of the heighest panel */
  var maxHeight =
    $.map($('.ui-tabs-panel'), function(el) {
        return $(el).height();
    })
    .sort(function(a, b) {
        return b - a;
    })[0];

  /* Set the height of the container to a fixed size */
  $('.vertical-tabs').height(maxHeight);
});
