$(function() {
	$('dl.navi2>dd.hide').hide();
	$('dl.navi2>dt.opened').nextUntil('dl.navi2>dt').show('slow');
	$('dl.navi2>dt').click(function(e) {
		$(this).toggleClass('opened');
		$(this).nextUntil('dl.navi2>dt').toggle('slow');
	});
});
