window.addEvent('domready', function(){
  var szNormal = 118, szSmall = 105, szFull = 200;
  var lista = $$("#kwicks .kwick");
  
  lista.each(function(element){
    element.set('tween', {duration: 'short'});
    
    element.addEvent("mouseenter", function(event) {
      lista.each(function(el){
        if(el.id==element.id){
          //elemento actual
          el.tween('width',szFull);
        } else {
          //otro elemento
          el.tween('width',szSmall);
        }
      });
    });
    
    element.addEvent("click", function(event) {
      $('texto').fade(0);
      var myFuncion = function() {$('texto').load(element.id+".php");$('texto').fade(1);}
      myFuncion.delay(500);
    });
  });
  
  $("kwicks").addEvent("mouseleave", function(event) {
		lista.each(function(el){
		  el.tween('width',szNormal);
    });
	})
	
	$('texto').load("dis.php");
});