$(document).ready(function(){
	$(".toggler").next().hide();
	$(".toggler").addClass("folded");
	$(".toggler").click(function(){
		$(this).toggleClass("unfolded");
		$(this).next().addClass("move-aside");
		$(this).next().toggle();
		return false;
	});	
	
});