jQuery().ready(function(){

  if ($('#section-green').next().hasClass("noactive")) {
    $('#section-green').next().hide();
  }

  $('#section-green').click( function () {
    if ($(this).next().hasClass("noactive")) {
      $(this).removeClass("noactive");
      $(this).next().removeClass("noactive");
      $(this).next().slideDown("slow");
      $(this).addClass("active");
      $(this).next().addClass("active");
    }
    else {
      $(this).removeClass("active");
      $(this).next().removeClass("active");
      $(this).next().slideUp("slow");
      $(this).addClass("noactive");
      $(this).next().addClass("noactive");
    }
  });
});
