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

	// The same as before: adding events
	$('myOtherElement1').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: 300,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '80px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '39px');
		}
	});
	
	$('myOtherElement2').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '65px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '26px');
		}
	});
	
	$('fpreveal3').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '90px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '39px');
		}
	});
	
	$('fpreveal4').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '70px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '39px');
		}
	});
	
	$('fpreveal5').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '85px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '26px');
		}
	});
	
	$('fpreveal6').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '72px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '26px');
		}
	});
	
	$('fpreveal7').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: 200,
				transition: Fx.Transitions.linear // This could have been also 'bounce:out'
			}).tween('height', '87px');
		},
		'mouseleave': function(){
			// Resets the tween and changes the element back to its original size
			this.set('tween', {}).tween('height', '39px');
		}
	});
	
	
});

