
  window.addEvent('domready', function(){
 	
  	var list = $$('#keepitok img');
  	list.each(function(element) {

  		var fx = new Fx.Styles(element, {duration:300, wait:false, transition: Fx.Transitions.Back.easeOut});

  		element.addEvent('mouseenter', function(){
  			fx.start({  			
  			'width':'145px',
  			'height':'15px'   			
  			});

  		});

  		element.addEvent('mouseleave', function(){
  			fx.start({
  			'width':'29px',
  			'height':'3px'  			
  			});
  		});
  	});
  	  	  	
  });

