 $jjq(document).ready(function(){
   $jjq('#event-calendar').click(function(){
	$jjq('#calendar-big').slideDown(1000);
   });
   
	$jjq('#calendar-big #Kalender table tbody tr td').mouseover(function () {
		$jjq(this).css("background-color","#8AD0C8");
	});	
	
	$jjq('#calendar-big #kalender table tbody tr td').mouseout(function () {
		$jjq(this).css("background-color","#DDEFD7");
		$jjq('#prev').css("background-color","#5AB140");
		$jjq('#next').css("background-color","#5AB140");
		$jjq('#actual').css("background-color","#1B5808");
	});	
	$jjq('.page-item-2337').click(function(){
		$jjq('#gallery-big').slideDown(900);
	});
	$jjq('.page-item-2337 a').attr("href","#");
   
 });