$(function(){
	$('div.tree-container div.tree-header').click(function(){
		$(this).
			toggleClass('opened').
			next().
			slideToggle();
	});
});
