window.addEvent('domready', function(){
	// The same as before: adding events
	$('myOtherElement').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: 1000,
				transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
			}).tween('height', '220px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
});



window.addEvent('domready', function(){
	$('myOtherElement1').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '200px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
});


window.addEvent('domready', function(){
	$('myOtherElement2').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut 
			}).tween('height', '140px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
});



window.addEvent('domready', function(){
	$('myOtherElement3').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '160px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '30px');
		}
	});
});


window.addEvent('domready', function(){
	$('myOtherElement4').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '260px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '40px');
		}
	});
});