function setselflinkclass() { // highlight current page in menu
  var self = document.location.href.replace(/\/$/, '/index.html')
  var as = document.getElementsByTagName('a');
	for (var pos=0; pos<as.length; pos++) {
		if (as[pos].href == self)
		  as[pos].className = 'self';
	}
}

