window.addEvent('domready', function() {

///// BEZ NICZEGO
 
			new Request.JSON({
				url: "inc/seminaria/this_month.php", 
				onSuccess: function(response)
        {
						$('month').value = response.month;
						$('year').value = response.year;
						$('make_calendar').set('html',response.kalendarz);
						$('calendar_head').set('html',response.calendar_head);					
				}
			}).get($('calendar'));

	
///// BEZ NICZEGO


///// NEXT
	$('next').addEvent('click',function(){
 
			new Request.JSON({
				url: "inc/seminaria/next_month.php", 
				onSuccess: function(response)
        {
						$('month').value = response.month;
						$('year').value = response.year;
						$('make_calendar').set('html',response.kalendarz);
						$('calendar_head').set('html',response.calendar_head);					
				}
			}).get($('calendar'));

	});
	
///// NEXT

///// PREV
	$('prev').addEvent('click',function(){
 
			new Request.JSON({
				url: "inc/seminaria/prev_month.php", 
				onSuccess: function(response)
        {
						$('month').value = response.month;
						$('year').value = response.year;
						$('make_calendar').set('html',response.kalendarz);
						$('calendar_head').set('html',response.calendar_head);	
											
				}
			}).get($('calendar'));

	});
	
///// PREV


});
