
jQuery(function($) {
  var path = location.pathname.substring(1);
  
  /* check if the pageName is blank and assumes that it's the home page (index.php)
  if(pageName == '') {
  pageName = 'index.php';
  } */
  
  $('#nav a[@href$="' + path + '"]').addClass('selected');
});