
$("html").addClass("js");
$(function() {

  $("#main").accordion({
      objID: "#acc2", 
      obj: "div", 
      wrapper: "div", 
      el: ".h", 
      head: "h5", 
      next: "div", 
     // initShow : ".shown",
      standardExpansible : true
    });
  //* ---
  $("#main .accordion").expandAll({
      trigger: ".h", 
      ref: "h5", 
      cllpsEl : "div.outer",    
      oneSwitch : true
  });

  //--- */
/* -----------------------  
  $("#side ul.accordion").expandAll({
      trigger: "li", 
      ref: "", 
      cllpsEl : "ul", 
      state : '',
      oneSwitch : false
  });
  ------------------------ */  
  $("html").removeClass("js");
});

