
function w_onload() {
 var a=document.all.tags("A")
 var here=document.location.pathname.toLowerCase();
 for(var i=0;i<a.length;i++) {
	if("/"+a[i].pathname.toLowerCase()==here) {
		a[i].style.textDecoration="none";
		a[i].style.color="#4A722C";
		a[i].style.cursor="default";
		if (a[i].parentElement.innerText.charAt(0)==" ") {
		  //a[i].parentElement.parentElement.style.display="none";
		}
		break;
	}
 }
 try {
	window_onload();
 }
 catch(e) { 
	if(window.defaultStatus=="" ) {
		var T=document.all.tags("TITLE")
		window.defaultStatus=T[0].text;
	}
 }
 return true;
}

if (parseInt(navigator.appVersion)>=4) 
	window.onload=w_onload;
