// JavaScript Document
function init() {
	ganzeURL = window.location.href;
	//URL: file:///C:/lifepilot/HTML/lpc_nav05_01_001.htm
	ganzeURLlength = ganzeURL.length;
	if (ganzeURL.substr(ganzeURL.length-9,9) == "index.htm") {
		window.document.getElementById('hn00').style.color = "#FFFFFF";
	} else {
	// mit - von hinten bei slice
		teilURL = ganzeURL.slice(-ganzeURL.length,-11);
		teilURL = teilURL.slice(teilURL.length-2,teilURL.length);
		eval("window.document.getElementById('hn" + teilURL + "')").style.color = "#FFFFFF";
	}
}
