<nav class="navigation">
<a href="/">Главная</a>
<a href="/category">Раздел</a>
<a href="/about">О нас</a>
</nav>
.navigation .active {
background #333;
color: #fff;
}
(function () {
var a = document.querySelectorAll('.navigation a');
for (var i=a.length; i--;) {
if (a[i].href === window.location.pathname || a[i].href === window.location.href) a[i].className += ' active';
}
})();