$(document).ready(function(){
	$("#subnavi dd").hide();					   
	$("#subnavi dd.first").show().addClass("cursor");
	$("#subnavi dt a").click(function(){	
		$("#subnavi dt a").removeClass("cursor");
		if ($(this).parent().next("dd").css("display")!="block") {
			$(this).addClass("cursor");
			$("#subnavi dd").slideUp("slow");
			$(this).parent().next().slideDown("slow");
			}
		return false;
	});

$("#subnavi dt:eq(" + ($("#subnavi dl").children().index($(".first")) - 1)/2 + ") a").addClass("cursor");

	$("#subnavi #impressum dd").show ();
	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});
	
});