window.addEvent('domready', function(){

			var szSmall  = 28, szFull   = 617;
				
				var kwicks = $$("#kwick .kwick");
				var fx = new Fx.Elements(kwicks, {
				wait: false, 
				duration: 800,
				transition: Fx.Transitions.quadOut
				});			
				kwicks.each(function(kwick, i) {
					kwick.addEvent("mouseenter", function (event) {
						var o = {};
						o[i] = {width: [kwick.getStyle("width").toInt(), szFull]};
						kwicks.each(function(other, j) {
								if(other != kwick) {
									var w = other.getStyle("width").toInt();
									if(w != szSmall) o[j] = {width: [w, szSmall]};
								}
						});
						fx.start(o);
					});
				});		
			});	
						