// JavaScript Document
function Getcurrentpage() { 
	if (!document.getElementsByTagName) return;  
	var anchors = document.getElementsByTagName("a"); 
	var thispage = location.href; 
	for (var i=0; i<anchors.length; i++) {  
		var anchor = anchors[i]; 
		thisHREF = anchor.getAttribute("href"); 
		if ((thisHREF == thispage) || (location.protocol + "//" + location.hostname + "/" + thisHREF == thispage)) { 
			anchor.id = "current"; 
			return; 
		} 
	}  
}
window.onload=function(){
	Getcurrentpage();
};
