$(document).ready(function() {
	
	// Geschmeidiges Scrollen
	$('li a.intern').click(function(e) {
		e.preventDefault();
		$.scrollTo($(this).attr("href"), 800);
	});

	// Navigation
	$(".nav ul ").css( {
		display : "none"
	});
	$(".nav li").each(function() {
		var $sublist = $(this).find('ul:first');

		$(this).hover(function() {
			$sublist.stop().css( {
				overflow : "hidden",
				height : "auto",
				display : "none"
			}).slideDown(400, function() {
				$(this).css( {
					overflow : "visible",
					height : "auto"
				});
			});
		}, function() {
			$sublist.stop().slideUp(400, function() {
				$(this).css( {
					overflow : "hidden",
					display : "none"
				});
			});
		});
	});
	
	// Galerie
	$("a[rel=badminton]").fancybox({});
	$("a[rel=minigolf]").fancybox({});
	$("a[rel=squash]").fancybox({});
	$("a[rel=tennis]").fancybox({});
	$("a[rel=bewirtung]").fancybox({});
	$("a[rel=erholung]").fancybox({});
	$("a[rel=bowling]").fancybox({});
	
	// Info über Bilder für Gallerie
	$("img[title]").tooltip({ position: "bottom right" });
});
