$(document).ready(function() {
	$('.topofthepage').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});
	$(".row, .termine-block").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});
	$("#ressortlink a").click(function(){
		$("#sb-kategorien").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	$("#sb-kategorien li a").hover(function() {$(this).next("em").animate({opacity: "show"}, "slow");}, function() {
		$(this).next("em").animate({opacity: "hide"}, "fast");
	});
});
