// <!-- (c) 2008 cake WEBDESIGN - http://www.virtual-cake.de - All Rights Reserved. -->

window.addEvent("domready", function() {
	$$("#menu a").each(function(lnk) {
		var href = lnk.getAttribute("href");
		lnk.parentNode.addEvent("click", function() {
			if(href) document.location = href;
		});
	});

});

