ddaccordion.init({
	headerclass: "acHeader", //カテゴリの class名
	contentclass: "acContents", //カテゴリの子class名
	revealtype: "click", //動作トリガ: "click", "clickgo", or "mouseover"
	mouseoverdelay: 200, //動作トリガ="mouseover"　の場合、アクション起こす最初の時間
	collapseprev: false, //true：一つのカテゴリのみを開く　　/false：複数のカテゴリを開ける
	defaultexpanded: [ddcurrent],
	onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
	animatedefault: false, //開いた時のデフォルトアニメーション動作
	persiststate: false, //persist state of opened contents within browser session?
	toggleclass: ["", "acOpen"], //　クラスをトグルで切り替えられる！　　 ["class1", "class2"]
	togglehtml: ["prefix", "+", "-"], //画像などを用意したり、htmlを用意できる！　　 ["position", "html1", "html2"] (see docs)
	animatespeed: "normal", //アニメーションのスピード　　milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
	oninit:function(expandedindices){ //custom code to run when headers have initalized
		//do nothing
	},
	onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
		//do nothing

	}
});

