jQuery.multiDepth = function(id){ $(id).find('ul').find('li').hover(function(){ $(this).find('ul:first').animate({height:'show'}, 'fast'); }, function(){ $(this).find('ul:first').animate({height:'hide', opacity:'hide'}, 'fast'); }); }