/**
 * Initialize the ddaccordion values
 *
 * $Id: ddaccordion_init.js 2485 2011-09-17 16:47:57Z admin $
 */
ddaccordion.init({
    headerclass: "accordion_head", //Shared CSS class name of headers group
    contentclass: "accordion_text", //Shared CSS class name of contents group
    revealtype: "click",
    mouseoverdelay: 200,
    collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
    defaultexpanded: [], //index of content(s) open by default [index1, index2, etc]. [] denotes no content.
    onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
    animatedefault: false, //Should contents open by default be animated into view?
    persiststate: false, //persist state of opened contents within browser session?
    toggleclass: ["accordion_closed","accordion_open"],
    togglehtml: ["prefix", "<img src='http://lib3.damilhosting.com/images/various/expand.png' /> ",
                           "<img src='http://lib3.damilhosting.com/images/various/collapse.png' /> "],
    animatespeed: "fast",
    oninit:function(expandedindices){
        //do nothing
    },
    onopenclose:function(header, index, state, isuseractivated){
        //do nothing
    }
})
