
$(function()
{
	// INIT
	
   /* NAVIGATION DROP DOWN MENU - BEZIRKE/NEBENSTELLEN */
  $(".nav_nebenstellen_list").hide();

  /* Navigation: Fachbereich/gruppe - öffnet die Fachbereichsgruppe auf Klick */
  $(".nav_bezirk").click(function()
  {
			$(this).next(".nav_nebenstellen_list").slideToggle(400);
			$(this).toggleClass("open_bezirk");
  });
  
   	
});
