$(function() {
	$('[folding]').each(function() {
		var $_title = $(this).children(":first");
		$_title.css("cursor", "pointer");
		$_title.nextAll().hide();
		$_title.wrapAll("<a href='.' onclick='return false' class='foldinga'></a>");
		$_title.css({
			'border-bottom' : '1px dashed'
		});
		$_title.parent('a').css({
			'text-decoration' : 'none'
		});
	});
	$('[folding] :first-child').click(function() {
		$(this).parent('[folding]').children(':first').nextAll().slideToggle("slow");
	});
});