/**
  @author http://dtp-design.ro
 */

$$('#meniu ul li').each(function(el){
	el.addEvents({
		click:function(){
			var myElement = this.getElements('ul');
			myElement.set('morph', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			});
			myElement.morph('.active_list');
			myElement.addEvent('mouseleave',function(){
				this.morph('.inactive_list')
			})
		},
		mouseover:function(){
			this.getElements('img').each(function(x){
				x.setAttribute('src','images/arrow.gif')
			})
		},
		mouseout:function(){
			this.getElements('img').each(function(x){
				x.setAttribute('src','images/arrow_over.gif')
			})
		}
	});
});

window.addEvent('domready',function(){
				$('meniu').setStyle('height',($('content_1').getStyle('height').toInt())-18);				
			});
		

