window.addEvent('domready', function(){
    	$$('div.menu a').each(function(el) {
            var fx = new Fx.Morph(el,{ duration:250, link:'cancel', transition: Fx.Transitions.Quad.easeOut });
            el.addEvents({
		'mouseenter': function() {
                    fx.start({ 
						'top': 13,
                        'font-size' : 15,
                        'padding-left' : 10
			}); 
		},
		'mouseleave': function() { fx.start({ 
						'top': 15,
                        'font-size' : 13,
                        'padding-left' : 0
                        }); 
		}
		});
	});
    });