
function getMonth( maand, jaar )
{
	 $.ajax({
	   type: "POST",
	   url: "opmaak/agenda.asp",
	   data: "maand=" + maand + "&jaar=" + jaar + "",
	   success: function(msg){
		   $("#agenda").empty();
		   $("#agenda").append(msg);
	   }
	 });

}

function hover( variable ) 
{

	var omschrijving	=	$(variable).children(".agenda_omschrijving").text();
	
	//Empty Div
	$(variable).children(".tooltip").empty();
	//Fill Div With Value
	$(variable).children(".tooltip").append(omschrijving);
	//Show Div
	$(variable).children(".tooltip").show();
}

function hoverout( variable )
{
	//Hide Div
	$(variable).children(".tooltip").hide();
	//Empty Div
	$(variable).children(".tooltip").empty();
}


