		window.addEvent('domready', function(){
			var szNormal = 225, szSmall  = 219, szFull   = 260;
			
			var kwicks = $$("#kwicks .kwick");
			var fx = new Fx.Elements(kwicks, {wait: false, duration: 400, 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);
			})
	var page = new Fx.Slide('hide_show', {mode: 'vertical'});
 
	/* DomReady Event fires when all Elements are ready, but not images. */
	window.addEvent('domready', function() {

		page.hide()

		// ------------Other domready functions...
	});
 
	/* Load Event fires when the whole page is loaded, included all images */
	window.addEvent('load', function() {
					function showPage(){
						page.slideIn();
					};	
					showPage.delay(500, $('hide_show'));
 
	});
});