// JavaScript Document
jQuery(function($) {
  var path = location.pathname.substring(1);
  $('#navlist a[@href$="' + path + '"]').addClass('active');
});