  var id = '';

  $(document).ready(function() {
        $("#Inf-news-events").hide();
        $("#Inf-insight").hide();
        $("#Inf-why-milliman").hide();
        $("#Inf-expertise").hide();

        $("#GlobalNav ul li.info").mouseover(function() {
            id = $(this).attr("id");
            $("#Inf-news-events").hide();
            $("#Inf-insight").hide();
            $("#Inf-why-milliman").hide();
            $("#Inf-expertise").hide();
            $("#GlobalNavInfo").css("display","block");

            if (id == "expertise") {
              $("#Inf-expertise").show();
            } else if (id == "why-milliman") {
              $("#Inf-why-milliman").show();
            } else if (id == "insight") {
              $("#Inf-insight").show();
            } else if (id == "news-events") {
              $("#Inf-news-events").show();
            }
            });

        $("#GlobalNavInfo").mouseenter(function() {
            id = $(this).attr("id");
            if (id == "expertise") {
              $("#Inf-expertise").show();
            } else if (id == "why-milliman") {
              $("#Inf-why-milliman").show();
            } else if (id == "insight") {
              $("#Inf-insight").show();
            } else if (id == "news-events") {
              $("#Inf-news-events").show();
            }
            });

        $("#GlobalNavInfo").mouseleave(function() {
            $("#Inf-news-events").hide();
            $("#Inf-insight").hide();
            $("#Inf-why-milliman").hide();
            $("#Inf-expertise").hide();
            });

        $("#GlobalNav").mouseleave(function() {
            $("#Inf-news-events").hide();
            $("#Inf-insight").hide();
            $("#Inf-why-milliman").hide();
            $("#Inf-expertise").hide();
            });
        });
