$(document).ready (function (){

     $("#menu ul li").hover(function(){

         $(this).children('a').addClass('current-menu-item');
         $(this).children('ul').stop(true,true).slideDown();
         //$(this).stop(true, true);
     },function(){

         $(this).children('a').removeClass('current-menu-item');
         $(this).children('ul').slideUp();

         })

});

