
$(document).ready(function(){

	// nur für IE 6.0
	if ($.browser.msie && $.browser.version == "6.0")
	{
		// Auf und Zuklappen
		$("#navmenu > li a").hover(
			function(){
				$(this).next().show().css({
					"margin-top" : "2px",
					"background-color" : "blue"
				});
			},
			function(){
				$(this).next().hide();
			}
		);

		// 2.Ebene anzeigen/ausblenden
		$("#navmenu li ul").hover(
			function(){
				$(this).show();
			},
			function(){
				$(this).hide();
			}
		);

		// Links Hover 2.Ebene
		$("#navmenu > li li a").hover( function () { $(this).toggleClass("aktueller_pfad") } );

	}
});

