// JavaScript Document
window.addEvent("domready",function(){
									
									var szNormal = 51, szSmall  = 51, szFull   = 319;
 
									var kwicks = $$("#plk_sidekwids li");
									
									var fx = new Fx.Elements(kwicks, {wait: false, duration: 300, transition: Fx.Transitions.Circ.easeOut,onStart: function() { 
			kwicks.each(function(other, j) {	
								 
				if(other.hasClass("active")){
				
					other.removeClass("active");
				
				}					
			
			});	
																																							} });
									
									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]};													
													if(other.hasClass("active")){
														other.removeClass("active");
														 
													}													
												} 												
											});
											
											fx.start(o);
											this.addClass("active");	
										});
									});
									
									/*	 
							$("plk_sidekwids").addEvent("mouseleave", function(event) {
										var o = {};
										kwicks.each(function(kwick, i) {
											o[i] = {width: [kwick.getStyle("width").toInt(), szNormal]}
										});
										fx.start(o);
									});
										 */
									
									
									});
