// JavaScript Document

$(document).ready(function(){
					 	   
	$("a.fancy").hover(function(){
		$(this).find("span").slideDown(300)
			}, function(){
				$(".fancy span").slideUp(200)
	});
	
	$(".fancy").fancybox();

	$("#termine .showAll").hide();
	$(".showAllToggle").click(function(){
		$(this).parent().find(".showAll").toggle(300);
		});
	
});



