jQuery(function($) {
  var path = location.pathname.substring(1);
  if(path != "") {
  	$('#navigation a[@href$="' + path + '"]').parent().addClass('active');
  } else {
	$('#navigation #home').addClass('active');
  };
});