jQuery(function($){
    $(".navmenu-container-n3 div.item-wrap").hover(function(){
        $(this).addClass($(this).hasClass("item-wrap-active") ? "item-wrap-active-hover" : "item-wrap-hover");
    }, function(){
        $(this).removeClass("item-wrap-active-hover item-wrap-hover");
    }).children(".handle").click(function(){
        $(this).parent().toggleClass("item-wrap-active").toggleClass("item-wrap-active-hover").next().toggleClass("sub-show");
        
    });
    $(".navmenu-container-n3 ul.sub li").hover(function(){
		
        $(this).children(":last").addClass("sub-show");
		
    }, function(){
        $(this).children(":last").removeClass("sub-show");
    });
});

