window.addEvent('domready', function() {
	var szNormal = 114, szSmall  = 86, szFull   = 309;
			var imageMenu = $$("#imageMenu .kwick");
			var fxmn = new Fx.Elements(imageMenu, {wait: false, duration: 500});
			imageMenu.each(function(kwick, i) {
				kwick.addEvent("mouseenter", function(event) {
					var o = {};
					o[i] = {width: [kwick.getStyle("width").toInt(), szFull]}
					imageMenu.each(function(other, j) {
						if(i != j) {
							var w = other.getStyle("width").toInt();
							if(w != szSmall) o[j] = {width: [w, szSmall]};
						}
					});
					fxmn.start(o);
				});
			});
			$("imageMenu").addEvent("mouseleave", function(event) {
				var o = {};
				imageMenu.each(function(kwick, i) {
					o[i] = {width: [kwick.getStyle("width").toInt(), szNormal]}
				});
				fxmn.start(o);
			});
});