/**
 * Initialize the ddaccordion values
 *
 * $Id: ddaccordion_init.js 580 2009-09-06 22:11:27Z Dave $
 */
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://libs.damilhosting.com/images/expand.png' /> ",
                           "<img src='http://libs.damilhosting.com/images/collapse.png' /> "],
    animatespeed: "fast",
    oninit:function(expandedindices){
        //do nothing
    },
    onopenclose:function(header, index, state, isuseractivated){
        //do nothing
    }
})