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', '123px'); // Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	
	// 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', '74px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	
	// Tercer Opcion de Menú
	$('myOtherElement3').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', '147px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	
	// Cuarta Opcion de Menú
	$('myOtherElement4').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', '123px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	// Quinta Opcion de Menú
	$('myOtherElement5').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', '147px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	// Sexta Opcion de Menú
	$('myOtherElement6').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', '147px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
	// Septima Opcion de Menú
	$('myOtherElement7').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', '100px');	// Altura del rebote
		},
		'mouseleave2': function(){
			// Resets the tween2 and changes the element back to its original size
			this.set('tween2', {}).tween2('height', '25px');
		}
	});
	
});
