$("a").each(function(){
var href = $(this).attr('href')
if(location.pathname == $(this).attr('href'))){
$(this).addClass('current-active');
}
})
$("a").each(function(){
var href = $(this).attr('href')
if(location.pathname == $(this).attr('href'))){
$(this).addClass('current-active');
}
})