function setActiveMenuItem() {
  var page=String(location.pathname).slice(1);
  if (page.indexOf('/') >= 0) {
    page = page.substring(0,page.indexOf('/'));
  };


  var menuId="menulink"+page;

  if (document.getElementById(menuId)) {
    document.getElementById(menuId).className="active";
  };
  //alert(menuId);
};
