прошу прощения, не то скинул :Р
(function($){
var options = $.extend({
fadeIn: 'slow',
fadeOut: 'fast'
},options);
$.fn.extend({
jenvitMenu: function(){
$(this).find('ul')
.css('display','none');
return this.each(function(){
$(this).children().hover(
function(){
self = $(this).children().eq(1);
self.fadeIn(options.fadeIn);
},
function(){
self.fadeOut(options.fadeOut);
}
);
});
}
});
})(jQuery);