$( function() {

$(".dropdown-li").hover( 
  function() {
    $(this).children(".submenu-container").css({'display': 'block', 'opacity': '0'}).animate({'opacity': '1'}, 300);
    $(this).children("a").addClass("current");
  }, function() {
    $(this).children(".submenu-container").css('display', 'none');
    $(this).children("a").removeClass("current");
  }
);

});
