﻿
//**********************************************************************
// specialismBar class - Javascript class file
//**********************************************************************
function homeContentPanel() {

    //// **************************************************
    //// Attach the event handlers for the specialism panel in the home page
    //// **************************************************
    this.attachEventHandlers = function() {
        HomepageContent();
    };


    function HomepageContent() {

        var HomepageLastFocusedLink = null;
        $('#promo-specialisms-com').hover(function() { }, function() {
            if (HomepageLastFocusedLink) {
                HomepageLastFocusedLink.parent().removeClass('here');
                $(HomepageLastFocusedLink.attr('href')).css('display', 'none');
                $('#lnavDefault').css('display', 'block')
            }
        });
        $('#nav-com a').hover(function() {
            $('#lnavDefault').css('display', 'none');
            if (HomepageLastFocusedLink) {
                HomepageLastFocusedLink.parent().removeClass('here');
                $(HomepageLastFocusedLink.attr('href')).css('display', 'none');
            }

            HomepageLastFocusedLink = $(this);

            $(this).parent().addClass('here');
            $($(this).attr('href')).css('display', 'block');
        }, function() { })

        // display the default panel on the initial page load
        $('#lnavCountrySelect').css('display', 'none');
        $('#navCountry').removeClass('here');
        $('#lnavDefault').css('display', 'block');
    };
}