ddaccordion.init({
	headerclass: "silverheader", //カテゴリの class名
	contentclass: "submenu", //カテゴリの子class名
	revealtype: "mouseover", //動作トリガ: "click", "clickgo", or "mouseover"
	mouseoverdelay: 80, //動作トリガ="mouseover"　の場合、アクション起こす最初の時間
	collapseprev: true, //true：一つのカテゴリのみを開く　　/false：複数のカテゴリを開ける
	defaultexpanded: [], //ロード後開いておくカテゴリ　　open by default [index1, index2, etc] [] denotes no content
	onemustopen: true, //Specify whether at least one header should be open always (so never all headers closed)
	animatedefault: false, //開いた時のデフォルトアニメーション動作
	persiststate: true, //persist state of opened contents within browser session?
	toggleclass: ["", "selected"], //　クラスをトグルで切り替えられる！　　 ["class1", "class2"]
	togglehtml: ["", "", ""], //画像などを用意したり、htmlを用意できる！　　 ["position", "html1", "html2"] (see docs)
	animatespeed: "slow", //アニメーションのスピード　　milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
	oninit:function(headers, 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
	}
})




