$(document).ready(function() {
	$('.agenda').css({'display': 'none'});
	
	$('.events').live('click',function(){
		var day = $('.day-number',this).text();
/*		alert(day); */
		$('.calendar').fadeOut();
		setTimeout(function(){$('#agenda_'+day).fadeIn();}, 400);
		
		//$('#agenda_'+day).slideDown();
		
	});
	$('.back_cal').live('click',function(){
		$('.agenda').fadeOut();
		setTimeout(function(){$('.calendar').fadeIn();}, 400);
	});
	$('.cal_change').live('click',function(){
		$.post("scripts/calendar.php", { month: $(this).attr('month') }, function(data){
			$('#cal').html(data);
			$('.agenda').css({'display': 'none'});
		});
	});
	
	
});
