ddaccordion.init({
	headerclass: "headerbar", // Shared CSS class name of headers group
	contentclass: "submenu", // Shared CSS class name of contents group
	
	// Reveal content when user clicks or onmouseover the header? 
	// Valid value: "click", "clickgo", or "mouseover"
	revealtype: "click", 
	
	// If revealtype="mouseover", set delay in milliseconds before
	// header expands onMouseover
	mouseoverdelay: 200, 
	
	// Collapse previous content (so only one open at any time)? true/false
	collapseprev: false,
	
	// index of content(s) open by default [index1, index2, etc]
	// [] denotes no content
	defaultexpanded: [0, 1, 3],
	
	// Specify whether at least one header should be open always
	// (so never all headers closed)
	onemustopen: false, 
	
	// Should contents open by default be animated into view?
	animatedefault: false, 
	
	// persist state of opened contents within browser session?
	persiststate: true, 
	
	// Two CSS classes to be applied to the header when it's collapsed
	// and expanded, respectively ["class1", "class2"]
	toggleclass: ["", "selected"], 
	
	// Additional HTML added to the header when it's collapsed and
	// expanded, respectively  ["position", "html1", "html2"] (see docs)
	togglehtml: ["", "", ""], 
	
	// speed of animation: integer in milliseconds (ie: 200), or
	// keywords "fast", "normal", or "slow"
	animatespeed: "fast", 
	
	// custom code to run when headers have initalized
	oninit:function(headers, expandedindices) { 
		// do nothing
	},
	
	// custom code to run whenever a header is opened or closed
	onopenclose:function(header, index, state, isuseractivated) { 
		// do nothing
	}
})

