/**
 * 
 * Tab that slides up and down
 */

Ah.SlidingTab = new Class({
  
  el: null,
  effect: null,
  
  initialize: function(el, options){
      this.el = $(el);
      this.effect = new Ah.Effects.Mover(this.el, options);
      this.effect.setClosed();
      this.el.addEvent( 'mouseenter', this.effect.open.bind(this.effect));
      this.el.addEvent( 'mouseleave', this.effect.close.bind(this.effect));
  }
  
});