		window.addEvent('domready', function(){
			var szNormal = 130, szSmall  = 130, szFull   = 200;
			
			var prosath = $$("#prosath .team");
			var fx = new Fx.Elements(prosath, {wait: false, duration: 300, transition: Fx.Transitions.Back.easeOut});
			prosath.each(function(team, i) {
				team.addEvent("mouseenter", function(event) {
					var o = {};
					o[i] = {width: [team.getStyle("width").toInt(), szFull]}
					prosath.each(function(other, j) {
						if(i != j) {
							var w = other.getStyle("width").toInt();
							if(w != szSmall) o[j] = {width: [w, szSmall]};
						}
					});
					fx.start(o);
				});
			});
			
			$("prosath").addEvent("mouseleave", function(event) {
				var o = {};
				prosath.each(function(team, i) {
					o[i] = {width: [team.getStyle("width").toInt(), szNormal]}
				});
				fx.start(o);
			})
			
		}); 
