(function($){

  $.fn.menu = function(){
  
     this.each(function(){      

        root = $(this);
        item = root.find("li");
        
        item.hover(
           function(event){
              li = $(this);
              ul = li.children("ul");
              ul.fadeIn("fast");
           }, 
           function(event){
              li = $(this);
              ul = li.children("ul");
              ul.fadeOut("fast");
           });
     });
  };
  
})(jQuery);
