// JavaScript Document
		window.addEvent('domready', function(){
var wms = $$('#wm .wm');
		var fx = new Fx.Elements(wms, {wait: false, duration: 200, transition: Fx.Transitions.quadOut});
		wms.each(function(wm, i){
			wm.addEvent('mouseenter', function(e){
				var obj = {};
				obj[i] = {
					'width': [wm.getStyle('width').toInt(), 279]
				};
				wms.each(function(other, j){
					if (other != wm){
						var w = other.getStyle('width').toInt();
						if (w != 105) obj[j] = {'width': [w, 91]};
					}
				});
				fx.start(obj);
			});
		});

		$('wm').addEvent('mouseleave', function(e){
			var obj = {};
			wms.each(function(other, j){
				obj[j] = {'width': [other.getStyle('width').toInt(), 134]};
			});
			fx.start(obj);
		});
	});
		

		