/*
 * accordion
 */
 
//	$(function() {
//		$(".toggle_container:not(:first)").show();
		
//		$("h2.trigger").click(function() {
//			$(".toggle_container:visible").slideUp("slow");
//			$(this).next().slideDown("slow");
//			return false;
//		});
		
		//Switch the "Open" and "Close" state per click
//		$("h2.trigger").toggle(function(){
//			$(this).addClass("active");
//		}, function () {
//			$(this).removeClass("active");
//		});
//	}); 

	$(document).ready(function(){
		
		//Hide (Collapse) the toggle containers on load
		$(".toggleClose").hide(); //非表示
		$(".toggleOpen:not(:first)").show(); //表示
	
		//Switch the "Open" and "Close" state per click
		$("h2.trigger").toggle(function(){
			$(this).addClass("active");
		}, function () {
			$(this).removeClass("active");
		});
	
		//Slide up and down on click
		$("h2.trigger").click(function(){
			$(this).next(".toggleClose").slideToggle("slow");
			$(this).next(".toggleOpen").slideToggle("slow");
		});
	
	});
