window.addEvent('domready',function(){
  $$('.homepage-teaser .the-content').each(function(teaser,i){

    teaser.addEvent('mouseenter',function(e){
      try { this.effect.cancel(); } catch(e) {};
      
      this.effect = new Fx.Morph(this.getElement('.the-text'),{
        'duration' : 200
      })
      .start({
        'height':this.getElement('.the-text').getScrollSize().y,
        'opacity':.9
      });
    });

    teaser.addEvent('mouseleave',function(e){
      try { this.effect.cancel(); } catch(e) {};
      
      this.effect = new Fx.Morph(this.getElement('.the-text'),{
        'duration' : 200
      })
      .start({
        'height':20,
        'opacity':0
      });
    });
  });
});
