/* Wait for the DOM to be available before doing any work */
window.addEvent('domready', function() {
    /* Find all elements in the DOM with a class of .menu */
    var menuElements = $$(".menu");
    menuElements.each(function( o, x ){
	menuElements[x].addEvents({
	    'mouseenter': function(){
		this.set('tween', {
		    duration: 1000,
		    transition: Fx.Transitions.Bounce.easeOut
		}).tween('height', '95px;');
	    },
	    'mouseleave': function(){
		this.set('tween', {}).tween('height', '15px');
	    }
	});
    });
} )

