var start1mph = new Fx.Morph('start1', {duration:500,transition: Fx.Transitions.Expo.easeInOut, link: 'cancel' });
var start2mph = new Fx.Morph('start2', {duration:500,transition: Fx.Transitions.Expo.easeInOut, link: 'cancel' });	
var start3mph = new Fx.Morph('start3', {duration:500,transition: Fx.Transitions.Expo.easeInOut, link: 'cancel' });	

window.addEvent('domready', function() {
	$('start1').addEvents({
		'mouseenter': function(){
			$('start2').style.zIndex = "49";
			$('start3').style.zIndex = "49";
			this.style.zIndex = "50";		
			start1mph.start ({
				'width': '870px'				
			});

		},
		'mouseleave': function(){
			start1mph.start ({
				'width': '290px'
			});
		}
	});
	$('start2').addEvents({
		'mouseenter': function(){
			$('start1').style.zIndex = "49";
			$('start3').style.zIndex = "49";
			this.style.zIndex = "50";		
			start2mph.start ({
				'width': '870px',
				'left': '10px'			
			});

		},
		'mouseleave': function(){
			start2mph.start ({
				'width': '290px',
				'left': '300px'	
			});
		}
	});
	$('start3').addEvents({
		'mouseenter': function(){
			$('start1').style.zIndex = "49";
			$('start2').style.zIndex = "49";
			this.style.zIndex = "50";		
			start3mph.start ({
				'width': '870px',
				'left': '10px'			
			});

		},
		'mouseleave': function(){
			start3mph.start ({
				'width': '290px',
				'left': '590px'	
			});
		}
	});

});