$(document).ready(function(){
if (document.location.pathname == '/') {
$('#menu a:first-child').addClass("active");
}
if (document.location.pathname == '/about-us') {
$('#menu a:nth-child(2)').addClass("active");
}
});
#menu .active{
background: orange;
color: #fff;
}