// JavaScript Document
window.addEvent('domready', function(){
	$('itemone').addEvents({
			'mouseenter': function(){
				this.set('morph', {
						  duration : 1000,
						  transition : Fx.Transitions.Bounce.easeOut});
				this.morph ({
						  'height' : itemOneHeight,
						  'background-color' : '#11494A'});
			},
			'mouseleave': function(){
				this.morph ({
						  'height' : 40,
						  'background-color' : '#18948A'});
			}
		});
	$('itemtwo').addEvents({
			'mouseenter': function(){
				this.set('morph', {
						  duration : 1000,
						  transition : Fx.Transitions.Bounce.easeOut});
				this.morph ({
						  'height' : itemTwoHeight,
						  'background-color' : '#11494A'});
			},
			'mouseleave': function(){
				this.morph ({
						  'height' : 40,
						  'background-color' : '#63B3AD'});
			}
		});
	$('itemthree').addEvents({
			'mouseenter': function(){
				this.set('morph', {
						  duration : 1000,
						  transition : Fx.Transitions.Bounce.easeOut});
				this.morph ({
						  'height' : itemThreeHeight,
						  'background-color' : '#11494A'});
			},
			'mouseleave': function(){
				this.morph ({
						  'height' : 40,
						  'background-color' : '#8D181B'});
			}
		});
	$('itemfour').addEvents({
			'mouseenter': function(){
				this.set('morph', {
						  duration : 1000,
						  transition : Fx.Transitions.Bounce.easeOut});
				this.morph ({
						  'height' : itemFourHeight,
						  'background-color' : '#11494A'});
			},
			'mouseleave': function(){
				this.morph ({
						  'height' : 40,
						  'background-color' : '#B5D8C8'});
			}
		});
}); 