$(document).ready(function(){

    $('.dropdown-menu').hover(
      function () { 
        $('.down-list', this).slideDown(100);
      }, 
      function () {
        obj = this;
        $('.down-list', this).slideUp(001);
      }
    );

});
