function activateMenu() {
	$('#nav li').not("#login,#logout").children("a").not(".noop")
	.each(function(i) {
		var section = $("#subnavigation ."+this.id);
		$(this).hover(function() {
			$("#navigation li a").css({paddingRight: "5px"}).stop().removeClass("hovered")
			$(this).not(".active").animate({paddingRight: "15px"}, 100)
				.queue(function() { $(this).addClass("hovered").dequeue(); })
		}, function() {
			$(this).css({paddingRight: "5px"}).stop().removeClass("hovered")
		})
		.click(function(e) {
			e.preventDefault();

			$("#nav li a").not($(this)).removeClass("active")
			$(this).addClass("active").css({paddingRight: "5px"}).stop().removeClass("hovered")

			$("#subnavigation").children().not(section).hide();
			section.not(":visible")
			.find("strong.profil").css({position: "relative", left: "50px"}).hide().end()
			.hide().animate({opacity: "show", height: "show"}, 200)
			.queue(function(){ 
				$(this).find("strong.profil").animate({left: "0", opacity: "show"}, 400).end().dequeue()
			});
		})
		
		section.find("a")
		.filterIE6out()
		.each(function(){ 
			$(this).data("previousPaddingRight", $(this).css("paddingRight")); 
			$(this).data("previousMarginRight", $(this).css("marginRight")); 
		})
	})
}
