﻿
//**********************************************************************
// topMenuBar class - Javascript class file
//**********************************************************************
function topMenuBar() {

    //// **************************************************
    //// Attach the event handlers for the country dropdown
    //// **************************************************
    this.attachEventHandlers = function() {

        var navCountry = $("#nav-global #nav-country");
        var navCountryList = $("#nav-global #nav-country-list");

        navCountry.bind("click", function(e) {
            navCountryList.toggleClass("js-hide");
            navCountry.toggleClass("here");
        });

       navCountry.mouseleave(function(e) {
            navCountryList.addClass("js-hide");
            navCountry.removeClass("here");
        });

    };
}