 $("#brpwp_wrapper-4  li  a").each(function() {
        var hreflink = $(this).attr("href");
        if (hreflink.toLowerCase()==location.href.toLowerCase()) {
                $(this).parent("li").addClass("current-menu-item");
        }
        else {
            $(this).parent("li").removeClass("current-menu-item");
        }
});
