window.onload=function(){
	var alleLinksAz  = document.getElementsByTagName('a').length;

	for(i=0;i<alleLinksAz;i++){
		if(document.getElementsByTagName("a")[i].href.match(/#/)){
			document.getElementsByTagName("a")[i].href = "javascript:alert('Nur zur Demo');";
		}
	}

}

function unternaviaus(objekt){
	objekt.firstChild.nextSibling.nextSibling.style.display = "none";
	objekt.style.backgroundColor = "";
}

function unternavian(objekt){
	objekt.firstChild.nextSibling.nextSibling.style.display = "block";
	objekt.style.backgroundColor = "#bfccd2";

}

function rauf(objekt){
	objekt.style.backgroundColor = "#BFCCD2";
	objekt.style.cursor = "hand"
	objekt.style.cursor = "pointer"


}

function runter(objekt){
	objekt.style.backgroundColor = ""
}

function hover(objekt){
	objekt.style.backgroundColor = "#e4e9ec"
}

function unhover(objekt){
	objekt.style.backgroundColor = ""
}