function initMenu()
{
	var nodes = document.getElementsByTagName("a");
	for (var i=0; i<nodes.length; i++)
	{
		nodes[i].onclick = function(){
			if (this.className.indexOf("a-rss") != -1) {
				if (this.parentNode.className.indexOf(" rss-active") != -1) {
					this.parentNode.className = this.parentNode.className.replace(" rss-active", "");
				}
				else 
					this.parentNode.className += " rss-active";
			}
			if (this.className.indexOf("a-light") != -1) {
				new Lightbox.base('mybox');
			}
			if (this.className.indexOf("a-light-close") != -1) {
				hideLightBox();
			}
			if (this.className.indexOf("a-verlosung") != -1) {
				window.open('fileadmin/popup/verlosung.html', 'Verlosung', 'width=600,height=400,status=yes,scrollbars=no,resizable=no');
			}
			if (this.className.indexOf("a-bkFunc") != -1) {
				bkHandler();
			}
		}
	}
}
if (window.addEventListener)
	window.addEventListener("load", initMenu, false);
else if (window.attachEvent)
	window.attachEvent("onload", initMenu);