<!--
function imagemenu(){
			var szNormal = 100; //initial value for the images
			var szSmall  = 100; //value if one image is expanded
			var szFull   = 250; //value for the expanded image
			var inita = 3;
			
			var kwicks = $$("#kwicks .kwick");
			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] = {width: [kwick.getStyle("width").toInt(), szFull]}
					kwicks.each(function(other, j) {
						if(i != j) {
							var w = other.getStyle("width").toInt();
							if(w != szSmall) o[j] = {width: [w, szSmall]};
						}
					});
					fx.start(o);
				});
			});
			
			$("kwicks").addEvent("mouseleave", function(event) {
				var o = {};
				kwicks.each(function(kwick, i) {
					o[i] = {width: [kwick.getStyle("width").toInt(), szNormal]}
				});
				fx.start(o);
			})
		
		
		
				fx.start({
			    '1': { //let's change the first element's opacity and width
				'width': [szNormal, szFull],
				'wait' : [false]				
			    }
		        });
		      };
//-->