// JScript source code
(function($) {

    $.fn.extend({

        menu: function(speed) {
                    
            $("li", this).mouseenter(function() {
                $("> ul", this).show(speed);
            }).mouseleave(function() {
                $("> ul", this).hide(speed);
            });
                   
        }
    });
})(jQuery);
