/**
 * 	Startseite
 */

//	Accordion-Funktion für die Eventliste
$('.next_event_info').live('click', function() {
	var trig = $(this);
	if ( trig.hasClass('next_event_info_active') ) {
		trig.next('.next_event_txt').slideToggle('fast');
		trig.removeClass('next_event_info_active');
	} else {
		$('.next_event_info_active').next('.next_event_txt').slideToggle('fast');
		$('.next_event_info_active').removeClass('next_event_info_active');
		trig.next('.next_event_txt').slideToggle('fast');
		trig.addClass('next_event_info_active');
	};
	return false;
});


/**
 * 	Monatsprogramm
 */

//	Klick auf Kalendertag
$(".calendar_day_link").live(
	"click",
	function(event) {
		var urlink = $(this).attr("href");
		event.preventDefault();
		$.ajax( {
			url:	urlink,
			type:	"GET",
			success: 	function(data) {
							$.overlay(data);
						}
		} )
	}
);
