var Sections = new Class(
{
  accordion: false,

  initialize: function()
  {
    this.create();
  },

  create: function()
  {
    $("jsComponentSections").setStyle("display","");
    var accordion = new Accordion('div#jsComponentSections div.sectionTitle', 'div#jsComponentSections div.sectionContent', {
      opacity: false
    }, $('jsComponentSections'));

    accordion.display(0);
    this.accordion = accordion;
  }
});

window.addEvent("domready", function() { var sections = new Sections(); } );
