$(document).ready(function() {
	$(".hide").hide();
});

function showtext() {
	$(".showtext").fadeOut('slow').remove();
	$("#show_saisonzeiten").animate({ height: 'show', opacity: 'show' }, 'normal');

	return true;
}

function hidetext() {
	$(".hide").animate({ height: 'hide', opacity: 'hide' }, 'normal');
	return true;
}