$("#show-next-date a").live("click", function (event) {
		
	if($("#weekly-calendar-next-date").is(":hidden")) {
		$("#weekly-calendar-next-date").fadeIn(1000); 
		$("#show-next-date a").html("skrýt další termíny");
		$("#show-next-date a").css({
			background: "url('/images/control_up.png') no-repeat center right"
		});
	} else {		
		$("#weekly-calendar-next-date").livequery(function () {
			var el = $(this);
			el.fadeOut(1000);
			el.slideUp();
		});   	
		$("#show-next-date a").html("ukázat další termíny");
		$("#show-next-date a").css({
			background: "url('/images/control_down.png') no-repeat center right"
		});
	}
		
});

//skrývání flash zpráviček
$("div.flash").livequery(function () {
	var el = $(this);
	setTimeout(function () {
		el.animate({"opacity": 0}, 2000);
		el.slideUp();
	}, 7000);
});

$(function () {  
	$("#weekly-calendar-next-date").hide(); 
	$("#show-next-date span").remove();
	$('<a href="#n">ukázat další termíny</a>').appendTo("#show-next-date");
});
