window.addEvent('domready', function() {


var f = $$('#Meniu li.Categorie');
	

	f.each(function (c) {
			var b = { height: 0, opacity: 0};
			var a = c.getElement('div');
			if (a) {
				
				var d = new Fx.Morph(a,{ duration:800, link:'cancel'});
				
				var h = a.getStyle( 'height').toInt();
				a.setStyles(b);
				
				c.addEvents({ 
					'mouseenter': function () {
						var e = c.getParent();
						if (e.getStyle('overflow') == 'hidden') e.setStyle('overflow', 'visible');
						d.element.setStyle('overflow', 'hidden');
						d.start({
    'height': h,
    'opacity': 1
});
					},
					'mouseleave': function () {
						d.start(b);
						a.setStyles(b);
					}
				})
				
				
				
				
				
				
				
				
			}
			

					 });
	
	
	
	
	
	
	
	
	
	
	
	$$('.mainmenu li a').each(function(el) { 
	var fx = new Fx.Morph(el,{ duration:400, link:'cancel' });
		el.addEvents({
		'mouseenter': function() { fx.start({ 
			'margin-top': -4,
			'padding-bottom': 20,
			'background-color': '#3a9ec7'
			}); 
		},
		'mouseleave': function() { fx.start({ 
			'padding-bottom': 10 ,
			'margin-top': 0 ,
			'background-color': '#59bae4'
			}); 
		}
		});
	});







});