

function update_actielijst()
{
	$.get('templates/ajax/get_actielijst.php', function(data)
	{
		$('#actielijst').html(data);
	});
}

function update_recente_paginaslijst( _url )
{
	$.get('templates/ajax/get_recente_paginas.php', { url: _url }, function(data)
	{
		$('#recente_paginas').html(data);
	});
}

function update_recente_paginas( _label, _url )
{
	$.get('templates/ajax/update_recente_paginas.php', { label: _label, url: _url }, function(data)
	{
		// geen feedback
	});
}

function toonmenu( id )
{
	$("#"+id).toggle(300, function()
	{
	});
}


