window.addEvent('domready', function(){

	$('myOtherElement').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '230px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
});

window.addEvent('domready', function(){

	$('myOtherElement2').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '320px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
});

window.addEvent('domready', function(){

	$('myOtherElement3').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '310px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
});

window.addEvent('domready', function(){

	$('myOtherElement4').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '250px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
});

window.addEvent('domready', function(){

	$('myOtherElement5').addEvents({
		'mouseenter': function(){
			this.set('tween', {
				duration: 1000,
				transition: Fx.Transitions.Bounce.easeOut
			}).tween('height', '20px');
		},
		'mouseleave': function(){
			this.set('tween', {}).tween('height', '20px');
		}
	});
	
});
