Highlight curret page in navigation
$('a').each(function() { if ($(this).prop('href') == window.location.href) { $(this).addClass('current'); } });