$(document).ready(function() {
	$('.start-hidden').hide();
	$('.toggle-next').click(function() {
	    $(this).next().slideToggle();
    });
});
