$(document).ready(function(){
	$('#blasendiv').hide();
	showForm($('select[name=Kursnummer]').val());
	
	setTimeout(function(){			
		$('#blasendiv').fadeIn(1000);
	}, 3000)
	
	$('select[name=Kursnummer]').change(function(){
		showForm($(this).val());
	})

	/*  Aufklapp-Texte */
	// Beschreibungen schalten
	$("div.descr").hide();
	$("p.fold > a").click(function() {
		if($(this).parent().hasClass('open')) {
			$(this).parent().attr('class', 'close fold');
			$(this).parent().next("div.descr").slideUp('fast');
		}
		else {
			// offene schliessen		
			$('p.fold.open').next("div.descr").slideUp('fast');
			$('p.fold.open').attr('class', 'close fold');
			// betreffenes öffnen
			$(this).parent().attr('class', 'open fold');
			$(this).parent().next("div.descr").slideDown('fast');
		}
		return false;
			
	});
})

function showForm(val) {
	if(val != '-')
		$('#anform').slideDown();
	else
		$('#anform').slideUp();
}

function verschwind(div) {
	$('#'+div).fadeOut(1000);
}
