/******** AUTHOR : FAISAL CHISHTI **********/

function initMenu() {
    $("#global-nav ul li.dropdown-li").hover(
      function() {
        $(this).children("#submenu-container").css("display", "block");
        $(this).children("a").addClass("current");
      },
      function() {
        $(this).children("#submenu-container").css("display", "none");
        $(this).children("a").removeClass("current");
      }
    );
}