$(document).ready(function(){
    
$("#student_nav a").each(function() {
    var hreflink = $(this).attr("href");
    if (hreflink.toLowerCase()==location.pathname.toLowerCase()) {
        $(this).parent("li").addClass("active");
    }   
}); 

$("#mentor_nav a").each(function() {
    var hreflink = $(this).attr("href");
    if (hreflink.toLowerCase()==location.pathname.toLowerCase()) {
        $(this).parent("li").addClass("active");
    }   
});

})
