window.addEvent('domready', function() {
  var fxs = [];
  $$("#external-links li").each(function(el) {
    var fx = new Fx.Slide(el.getElement('p'));
    fxs.include(fx);
    el.addEvent('mouseenter', function(e) {
      fxs.each(function(f) {
        f.stop();
        f.slideOut();
      });
      fx.stop();
      fx.slideIn();
    });
    if(fxs.length > 1)
      fx.hide();
  });
});
