/*
	Menu FX
	(c) 2008-2009 Norbert de langen <http://www.mediaconnexion.nl>
*/
window.addEvent('domready', function(){
	// The same as before: adding events
	$('menu').getElements('a').addEvents({
		'mouseenter': function(){
			// Always sets the duration of the tween to 1000 ms and a bouncing transition
			// And then tweens the height of the element
			this.set('tween', {
				duration: 1300,
				transition: Fx.Transitions.Elastic.easeOut // This could have been also 'bounce:out'
			}).tween('padding-top', '7px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {
				duration: 400,
			}).tween('padding-top', '0px');
		}
	});
});