$(document).ready(function() {
	$('.collapsible').parents('.textElement').children('*:not(:first-child)').toggle(0);
	$('.collapsible').css('cursor', 'pointer');
	$('.collapsible').click(function() {
		$(this).parents('.textElement').children('*:not(:first-child)').slideToggle(350);
	});
});

