$(document).ready(function() {
  $("#mainMenu li").hover(function() {
      $(this).children("ul").hide();
      $(this).children("ul").fadeIn();
      $(this).children("a").addClass('active-dropdown');
  },function(){
      $(this).children("ul").fadeOut();
      $(this).children("a").removeClass('active-dropdown');
  });
});
