// JavaScript Document

// Toggle Readmore by Vincent Verbruggen

jQuery(document).ready (function() {
		jQuery('.toggle').hide().prev().after('<p style="margin-top:-8px;"><a class="open-link" style="font-style:italic" href="javascript:;">Meer lezen...<\/a><\/p>');
		
		jQuery('.open-link').parent().next().each(function() {
			jQuery(this).append('<p class="close-link" style="margin-top:-8px;"><a  style="font-style:italic" href="javascript:;">Sluiten ^<\/a><\/p>');
		});
		
		jQuery('.close-link a').click(function() {
			jQuery(this).parent().parent().slideToggle('slow').prev().slideToggle('slow');
		});
		
		jQuery('.open-link').click(function() {
			jQuery(this).parent().slideToggle('slow').next().slideToggle('slow');
		});
	});