function Initialize(){
	HighlightCurrentPage();
}

function HighlightCurrentPage(){
	var Temp = document.location.href;
	var Loc = Temp.lastIndexOf('/');
	Temp = Temp.substring(Loc+1, Temp.length);
	if (Temp.length < 1){
		Temp = 'index.htm';
	}
	Temp = Temp.substring(0, Temp.length-4);
	if (document.getElementById('mnu'+Temp) != null){
		document.getElementById('mnu'+Temp).className='Highlight';
	}
}

function MenuEnter(El){
	El.style.borderColor = '#ffffff';
}

function MenuLeave(El){
		El.style.borderColor = '#000000';
}

function FlashLinkedElement(){
		var S = unescape(document.location.hash);
	if (S.length > 0){
		var ElName = S.substring(1, S.length);
		if (document.getElementById(ElName) != null){
			document.getElementById(ElName).className = 'FlashElement';
		}
	}
}
