window.onload = function() {

var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var obj = document.getElementById(sPage);

if (obj != null){
    document.getElementById(sPage).className = 'selected';
};

};