function menuDetect(){
	var pathName = document.location.pathname.replace('index.htm','home.htm');
	for(i=0;i<document.links.length;i++){
		if(document.links[i].parentNode.nodeName == "H5"){
			if(pathName.indexOf(document.links[i].innerHTML.toLowerCase()) != -1){
				document.links[i].className = 'selected';
			}
		}
	}
}