
$(document).ready(function(){  
   
     $("ul.navi li a").mouseover(function() { //When trigger is clicked...  
    
         //Following events are applied to the subnav itself (moving subnav up and down)  
         $(this).parent().find("ul.naviSub").slideDown('fast').show(); //Drop down the subnav on click  
   
         $(this).parent().hover(function() {  
         }, function(){  
             $(this).parent().find("ul.naviSub").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up  
         });   
     });  
 });  


$(document).ready(function(){  
   
     $("ul.naviSub li a").mouseover(function() { //When trigger is clicked...  
    
         //Following events are applied to the subnav itself (moving subnav up and down)  
         $(this).parent().find("ul.naviSub2").slideDown('fast').show(); //Drop down the subnav on click  
   
         $(this).parent().hover(function() {  
         }, function(){  
             $(this).parent().find("ul.naviSub2").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up  
         });   
     });  
 });  
