//
// main.js
//
jQuery(function($) {
	$(".c5tabelle table:last").addClass("tabelle-last");
	$(".foldable")
	.click(function() {
		$(this).next("table").fadeToggle("fast");
		var tableIcon = $(this).find(".table-icon").fadeToggle("fast");
	})
	.hover(function() {
		$(this).css("cursor", "pointer")
	}, function() {
		$(this).css("cursor", "auto")
	});

	var $navigationContainer = $("#navigation-container");
	var $content = $("#content");
	if ($navigationContainer.outerHeight(true) > $content.outerHeight(true)) {
		$content.css("min-height", ($navigationContainer.outerHeight(true)) + "px");
	}
});

