﻿/**** 
    fix the menu style for country items 
    because "we" want the country names to be always
    visible in the menu and at the same time be child of
    "Countries" we need to set them at the same level in 
    the Web.sitemap file. Therefore we need this short jquery
    stuff to adjust the style at loading time
***/

$(document).ready(function() {
    $('#ctl00_menu_Menun5 a').removeAttr("href");
    $('#ctl00_menu_Menun5 a').addClass("deadLink");
    $('#ctl00_menu_Menun6').addClass("left_menu_child");
    $('#ctl00_menu_Menun7').addClass("left_menu_child");
    $('#ctl00_menu_Menun8').addClass("left_menu_child");
    $('#ctl00_menu_Menun9').addClass("left_menu_child");
});
