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

		var tab = new Array("70px", "150px", "80px");
		
		/*
		for(var i=0; i<tab.length; i++) {
			$('myOtherElement'+i).addEvents({
				'mouseenter': function() {
					this.set('tween', {
						duration: 1000,
						transition: Fx.Transitions.Elastic.easeOut // This could have been also 'bounce:out'
					}).tween('height', '175px');
				},
				'mouseleave': function(){
					this.set('tween', {}).tween('height', '20px');
				}
			});
		}
		*/

		$('myOtherElement0').addEvents({
			'mouseenter': function() {
				this.set('tween', {
					duration: 1000,
					transition: Fx.Transitions.Elastic.easeOut // This could have been also 'bounce:out'
				}).tween('height', tab[0]);
			},
			'mouseleave': function(){
				this.set('tween', {}).tween('height', '20px');
			}
		});
/*
	$('myOtherElement1').addEvents({
			'mouseenter': function() {
				this.set('tween', {
					duration: 1000,
					transition: Fx.Transitions.Elastic.easeOut // This could have been also 'bounce:out'
				}).tween('height', tab[1]);
			},
			'mouseleave': function(){
				this.set('tween', {}).tween('height', '20px');
			}
		});
		
		$('myOtherElement2').addEvents({
			'mouseenter': function() {
				this.set('tween', {
					duration: 1000,
					transition: Fx.Transitions.Elastic.easeOut // This could have been also 'bounce:out'
				}).tween('height', tab[2]);
			},
			'mouseleave': function(){
				this.set('tween', {}).tween('height', '20px');
			}
		});
*/
});