﻿function initializeNavigation() {

    $('.SubNavigation').hide();
	
	$('.SubNavigation').each(function() {
		if ($(this).children().length == 0) {
			$(this).remove();	
		}
	});

    $('.NavListItem').hover(
        function() {
            $(this).addClass('MenuHover');
            $(this).children('.SubNavigation').show();
            $(this).children('.SubNavigation').children().show();
            $(this).children('.SubNavigation').children().children('a').show();
			
        },
        function() {
            $(this).removeClass('MenuHover');
            $(this).children('.SubNavigation').hide();
            $(this).children('.SubNavigation').children().hide();
            $(this).children('.SubNavigation').children().children('a').hide();
        }
    );
}
$(document).ready(initializeNavigation);
