	var last, t;
	function hovern(t) {
		if(typeof last == "undefined") { last=document.anchors[0]; }
		last.className='n';
		t.className='nh';
		t.blur();
		last=t;
	}
	
	
	var height, links_hoehe, links_spalte, inhalt_spalte, inhalt_hoehe;
	
	function GroesseAnpassen() {
			height = 0;
			links_hoehe = 0;
			links_spalte = document.getElementById("links");
			inhalt_spalte = document.getElementById("inhalt");
			links_hoehe = links_spalte.offsetHeight;
			inhalt_hoehe = inhalt_spalte.offsetHeight;
	
			if(links_hoehe < inhalt_hoehe) {
				height = inhalt_hoehe;
				height	= height + 20;
				links_spalte.style.height = height + "px";
			}

			
		window.setTimeout("GroesseAnpassen()",500);
}