window.addEvent('domready', function(){
	// The same as before: adding events
	return;
	$$('.subnav').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
			var el = this.getElement('.content');
			//el.setStyle('display','block');
			el.set('tween', {
				//duration: 500//transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '120px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			el = this.getElement('.content');
			//el.setStyle('display','none');
			el.set('tween', {}).tween('height', '0px');
		}
	});
});
