function toggleVeritasMenu() {
	if ($('#veritasInvisible').css("display") == "none") {
		$('#veritasMenu a').html("Veritas Nieuws &lt;&lt;")
		$('#veritasInvisible').css("display","block")
	}
	else {
		$('#veritasMenu a').html("Veritas Nieuws...")
		$('#veritasInvisible').css("display","none")
	}
}

function toggleNieuws(nieuwsId) {
	if ($('#newsDots'+ nieuwsId).css("display") == "none") {
		$('#leesmeer'+ nieuwsId).html("lees meer")
		$('#newsExtended'+ nieuwsId).hide("slow")
		$('#newsDots'+ nieuwsId).css("display","block")
	}
	else {
		$('#leesmeer'+ nieuwsId).html("minder weergeven")
		$('#newsExtended'+ nieuwsId).show("slow")
		$('#newsDots'+ nieuwsId).css("display","none")
	}
}
