function maak_kort(id) {
			$('#' + id).css( { 'max-height' : '42px', 'overflow' : 'hidden' } );
			$('#' + id + '_more').show();
			$('#' + id + '_less').hide();
			return false;
		}

function maak_lang(id) {
	$('#' + id).css( { 'max-height' : 'none', 'overflow' : 'visible' } );
	$('#' + id + '_less').show();
	$('#' + id + '_more').hide();
	return false;
}

function bijladen() {
	// array ids met de id's van de elementen die moeten open- of dichtklappen staan in een script-block binnen 
	// het xml-gedeelte (wetreg-response)
	jQuery.each( ids, function() {
	 //alert($('#' + this).innerHeight());
		if($('#' + this).innerHeight() > 67 ) {
			$('#' + this).css( { 'max-height' : '42px', 'overflow' : 'hidden' } );
			$('#' + this + '_more').show();
			$('#' + this + '_less').hide();
		 }
	});
}