jQuery(document).ready(function () {    
       
    jQuery('.topnav li').hover(   
        function () {   
            //show its submenu   
            jQuery('ul:first', this).slideDown(100);   
  
        },    
        function () {   
            //hide its submenu   
            jQuery('ul:first', this).slideUp(100);            
        }   
    );   
       jQuery("ul li ul li .children").prev().addClass("bbb");
});  

