$(document).ready(function(){

	// ** Wichtig für das topMenue ** Start
		$("div#navigationBorder ul:first").attr("id", "topMenue");
		$("ul#topMenue li:first").remove();
		$("ul#topMenue li ul li.cuttingLine").each(function(index) {
			 $(this).remove();
		});
		// Hover Navi Effekt
		$("ul#topMenue li").mouseenter(function(){
			//$(this).children("ul").slideDown(350);
			//$(this).children("ul").fadeIn(430);
			$(this).children("ul").css("display", "block");
		});

		$("ul#topMenue li").mouseleave(function(){
			//$(this).children("ul").slideUp(350);
			//$(this).children("ul").fadeOut(430);
			$(this).children("ul").css("display", "none");
		});
	// ** Wichtig für das topMenue  ** END

	// ** Wichtig für das mainMenue ** Start
		$("div#leftColumn ul:first").attr("id", "mainMenue");
	// ** Wichtig für das mainMenue  ** END

});

