/*
* @package        Horizontal Menu
* @copyright    Copyright (C) 2010 Global Illusion Kft. All rights reserved.
* @license        GNU/GPL
* @website        http://offlajn.com
* @email        janos.biro@offlajn.com
*
*/

window.addEvent('domready', function() {

  $$('.menu_element').each( function(obj, i){
    if (obj.getChildren().length >1){
      var inside = new Fx.Styles(obj.getChildren()[0], {duration:1000, wait:false, transition: Fx.Transitions.Expo.easeOut});
      obj.addEvent('mouseenter', function(){
        inside.options.transition=Fx.Transitions.Expo.easeOut;
        inside.options.duration=1500;
        inside.start({
          height: obj.getChildren()[0].getSize().scrollSize.y
        });
      });
    
      obj.addEvent('mouseleave', function(){
        inside.options.duration=1500;
        inside.options.transition=Fx.Transitions.Expo.easeOut;
        inside.start({
          height: 0
        });
      });
    }
  });
});
