How to make Multilevel Drop down navigation in wordpress theme?

I need same menu like on this site http://www.salesforce.com/aloha.jsp in wordpress theme. Multilevel dropdown mouse hover. is anybody know and trick, techniques or wp-plugin todo samelike this.

Related posts

Leave a Reply

3 comments

  1. If you can integrate jQuery to your wordpress blog then you can use the superfish jquery plugin as demonstrated here. Click examples and then nav-bar style (for some reason I can’t link directly).

  2. Slide down and slide up all tears of wordpress menu items on click function:
    
    <script> 
    jQuery('.sub-menu').hide(); 
    jQuery(document).ready(function($){
      jQuery('li.menu-item-has-children a').on("click", function(e){ 
        e.stopPropagation();
        e.preventDefault(); 
        if(!$(this).closest('li').hasClass('menu-item-has-children')){
           window.location.href = $(this).attr('href');
            } 
        jQuery(this).next('.sub-menu').slideToggle();
      });
    }); 
    </script>