/*	window.addEvent('domready', function(){
			var szNormal = 115, szSmall  = 115, szFull   =220;
var kwicks = $$("#tours .tour");
var fx = new Fx.Elements(kwicks, {wait: false, duration: 300, transition: Fx.Transitions.Back.easeOut});

kwicks.each(function(kwick, i) {
	kwick.addEvent("mouseenter", function(event) {
		var o = {};
		o[i] = {height: [kwick.getStyle("height").toInt(), szFull]}
	
		
		kwicks.each(function(other, j) {
			if(i != j) {
				var h = other.getStyle("height").toInt();
				if(h != szSmall ) o[j] = {height: [h, szSmall] };
				
				
				//if() o[j] = {height: [h, hzSmall]};
			}
		});
		fx.start(o);
	})
})

 $("tours").addEvent("mouseleave", function(event) {
	var o = {};
	kwicks.each(function(kwick, i) {
		o[i] = {height: [kwick.getStyle("height").toInt(), szNormal]}
			//o[i] = {height: [kwick.getStyle("height").toInt(), hzNormal]}
	});
	fx.start(o);
})
		});
*/
