function highlight() {
for ( i = 0; i < document.links.length; i += 1) {
	
	var a = document.links[i]

	if (a.href == window.location) {
		a.setAttribute("class", "current here");
		a.removeAttribute("href");
		a.removeAttribute("title");
		

	}
	
	
}
}
window.onload=highlight;

