window.addEvent('domready2', function(){
	//First Example
//	var el = $('myElement'),
//		color = el.getStyle('backgroundColor');

	// The same as before: adding events
	$('myOtherElement').addEvents({
		'mouseenter2': function(){
			// Always sets the duration of the tween2 to 1000 ms and a bouncing transition
			// And then tween2s the height of the element
			this.set('tween2', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween2('height', '145px'); // Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '80px');
		}
	});
	
	
	// Segunda Opcion de Menú
	$('myOtherElement2').addEvents({
		'mouseenter2': function(){
			// Always sets the duration of the tween2 to 1000 ms and a bouncing transition
			// And then tween2s the height of the element
			this.set('tween2', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween2('height', '145px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '80px');
		}
	});
	
});