window.addEvent('domready', function() {
	var otherEl = $('slide1');
	
	$('slide1').addEvent('mouseenter', function(){
		$('slide2').tween('width', 155);
		$('slide3').tween('width', 155);
		$('slide4').tween('width', 155);
		otherEl.tween('width', 296);
		return false; // alternative syntax to stop the event
	});
	$('slide1').addEvent('mouseout', function(){
		otherEl.tween('width', 191);
		$('slide2').tween('width', 191);
		$('slide3').tween('width', 191);
		$('slide4').tween('width', 191);
		return false; // alternative syntax to stop the event
	});
	
	var otherE2 = $('slide2');
	
	$('slide2').addEvent('mouseenter', function(){
		$('slide1').tween('width', 155);
		$('slide3').tween('width', 155);
		$('slide4').tween('width', 155);
		otherE2.tween('width', 296);
		return false; // alternative syntax to stop the event
	});
	$('slide2').addEvent('mouseout', function(){
		otherE2.tween('width', 191);
		$('slide1').tween('width', 191);
		$('slide3').tween('width', 191);
		$('slide4').tween('width', 191);
		return false; // alternative syntax to stop the event
	});
	
	var otherE3 = $('slide3');
	
	$('slide3').addEvent('mouseenter', function(){
		$('slide1').tween('width', 155);
		$('slide2').tween('width', 155);
		$('slide4').tween('width', 155);
		otherE3.tween('width', 296);
		return false; // alternative syntax to stop the event
	});
	$('slide3').addEvent('mouseout', function(){
		otherE3.tween('width', 191);
		$('slide1').tween('width', 191);
		$('slide2').tween('width', 191);
		$('slide4').tween('width', 191);
		return false; // alternative syntax to stop the event
	});
	
	var otherE4 = $('slide4');
	
	$('slide4').addEvent('mouseenter', function(){
		$('slide1').tween('width', 155);
		$('slide2').tween('width', 155);
		$('slide3').tween('width', 155);
		otherE4.tween('width', 296);
		return false; // alternative syntax to stop the event
	});
	$('slide4').addEvent('mouseout', function(){
		otherE4.tween('width', 191);
		$('slide1').tween('width', 191);
		$('slide2').tween('width', 191);
		$('slide3').tween('width', 191);
		return false; // alternative syntax to stop the event
	});
	
});