﻿$(document).ready(function() {

    $('.topLevelNavLinks li a').each(function() {

        if ($(this).hasClass('channel_active')) {

            if ($(this).hasClass('linkIndex2')) {
                $('.navBanner .position1').addClass('active');
            } else if ($(this).hasClass('linkIndex3')) {
                $('.navBanner .position2').addClass('active');
            } else if ($(this).hasClass('linkIndex4')) {
                $('.navBanner .position3').addClass('active');
            } else if ($(this).hasClass('linkIndex5')) {
                $('.navBanner .position4').addClass('active');
            } else if ($(this).hasClass('linkIndex6')) {
                $('.navBanner .position5').addClass('active');
            } else if ($(this).hasClass('linkIndex7')) {
                $('.navBanner .position6').addClass('active');
            }
        }

    });

    $('.topLevelNavLinks li a.channel_inactive').mouseover(function() {

        if ($(this).hasClass('linkIndex2')) {
            $('.navBanner .position1').addClass('rollover');
        } else if ($(this).hasClass('linkIndex3')) {
            $('.navBanner .position2').addClass('rollover');
        } else if ($(this).hasClass('linkIndex4')) {
            $('.navBanner .position3').addClass('rollover');
        } else if ($(this).hasClass('linkIndex5')) {
            $('.navBanner .position4').addClass('rollover');
        } else if ($(this).hasClass('linkIndex6')) {
            $('.navBanner .position5').addClass('rollover');
        } else if ($(this).hasClass('linkIndex7')) {
            $('.navBanner .position6').addClass('rollover');
        }

    }).mouseout(function() {

        $('.navBanner .linkItem').removeClass('rollover');

    });

});
