if (window.attachEvent) window.attachEvent("onload", sfHover);
Event.observe(window, 'load', init, false);

sfHover = function() {
	$$('ul.sitemap li').each(
		function(li)
		{
			li.onmouseover=function() {
				this.className+=" sfhover";
			}
			li.onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}			
		}
	);
	// var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	// for (var i=0; i<sfEls.length; i++) {
	// 	sfEls[i].onmouseover=function() {
	// 		this.className+=" sfhover";
	// 	}
	// 	sfEls[i].onmouseout=function() {
	// 		this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
	// 	}
	// }
}

function init()
{
}

function toggleKasten(kasten)
{
	$(kasten).next().toggle();
	$(kasten).toggleClassName('open');
}

