function toggleAdvocaatView(elm_a, elm_b, elm_c, link_txt_a, link_txt_b) {
	var show = document.getElementById(elm_a); // Element dat moet worden getoond
	var hide = document.getElementById(elm_b); // Element dat moet worden verstopt
	var link = document.getElementById(elm_c); // Link 
	
	show.style.display = 'block';
	hide.style.display = 'none';
	
	link.innerHTML = link_txt_a;
	link.onclick = function() {
		toggleAdvocaatView(elm_b, elm_a, elm_c, link_txt_b, link_txt_a);
	}
}

$(document).ready(function() {
	
	$('li#li_pub_more').click(function() {
		$(this).remove();
		$('li#publicaties_more').show();
	});
	
	$('li#li_int_more').click(function() {
		$(this).remove();
		$('li#interviews_more').show();
	});
	
});
