$(document).ready(function(){
	
	$('.spoilerTitle').click(function(){
		var spoiler = $(this).parent().children('.spoilerText');
		
		if(spoiler.css('display') == 'none')
		{
			$(this).parent().children('.spoilerText').show();
			$(this).text('Spoiler: sluiten');
		}
		else
		{
			$(this).parent().children('.spoilerText').hide();
			$(this).text('Spoiler: openen');
		}
	});
	
});
