$(document).ready(function()
{ 
	$("#calendar .inputselect option").each( function()
	{
		if ($(this).attr("selected"))
		{
			if ($(this).attr("selected"))
			{
				showagenda($(this).val());
			}
		}
	});

});

function showteam( team_id )
	{
		window.location  = "default.asp?Option=101&Teamnummer=" + team_id + "";
		return false;		
	}

function showagenda( month_id )
	{

		$.ajax({
		   type: "POST",
		   url: "overzichten/getAgendaItems.asp",
		   data: "month_id=" + month_id + "",
		   success: function(msg){
			$(".calendar-container").empty();
			$(".calendar-container").append(msg);
		   }
		 });

		 return false;
	}	
