(function() {
  var $;
  $ = jQuery;
  $.fn.accordion = function() {
    var nav;
    nav = $(this).children('ul').children('li').not('.selected');
    nav.mouseover(function() {
      return $(this).children('ul').slideDown();
    });
    return $(this).mouseleave(function() {
      return nav.children('ul').slideUp();
    });
  };
}).call(this);

