
	$(document).ready(function(){
		//slideDienst();
		//initSubDiensten();
	});
	
	function initSubDiensten(){
		var url = ""+window.location;
		var keyword = "."+url.split("#")[1];
		if ($(keyword).length > 0)
		{
			$(keyword).children("a.title").addClass("active");
			$(keyword).children(".subdienst-info").slideDown();
		}
		else
		{
			//$("#subdiensten").children("li:first").children("a.title").addClass("active");
			//$("#subdiensten").children("li:first").children(".subdienst-info").show();
		}
		
		/* Handle only 1 dienst */
		if ($("#subdiensten").children("li").length == 1)
		{
			$("#subdiensten").children("li:first").children("a.title").addClass("active");
			$("#subdiensten").children("li:first").children(".subdienst-info").slideDown();
		}
	}
	
	function slideDienst(){		
		$("#subdiensten").children("li").children("a.title").click(function(e){
			e.preventDefault();
			var newUrl = "#"+$(this).parent().attr("class");
			window.location = newUrl;
			$(this).parent().siblings().children("a.title").removeClass("active");
			$(this).parent().siblings().children(".subdienst-info").slideUp(300);
			$(this).toggleClass("active");
			$(this).siblings(".subdienst-info").slideToggle(300);
		});
	}
