$(function() {
    $('li.menuitem').mouseover(function() { $(this).children(".submenubox").css("display", "block"); });
    $('li.menuitem').mouseout(function() { $(this).children(".submenubox").css("display", "none"); });
    //$("li.menuitem").hover(function() { $(this).css("border-bottom", "3px solid #173006").css("padding-bottom", "0px");  }, function() { $(this).css("border-bottom", "none").css("padding-bottom", "3px");} );
    //$("li.submenuitem").hover(function() { $(this).css("background-color", "#334c58"); }, function() { $(this).css("background-color", "#031c28");} );
    $("li.menuitem").hover(function() { $(this).css("background-color", "#dafcbe"/*"#8bc372" "#c8fab4*/); $(this).find('a').css("color", "#173006"); }, function() { $(this).css("background-color", "");  $(this).find('a').css("color", "#173006");} );
    $("li.submenuitem").hover(function() { $(this).css("background-color", /*"#003300"*/"#c8fab4");$(this).find('span').css("color", "#173006");}, function() { $(this).css("background-color", "#0f3d04"/*"#004500"*/); $(this).find('span').css("color", "#eeeeee"); } );
});


