$(document).ready(function(){

  //Hide (Collapse) the toggle containers on load
  $(".sub").hide();
  $(".oc").hide();

  //Slide up and down on click
  $(".trigger").click(function(){
    $(this).next().slideToggle("slow");
    return true;
  });

  $(".trigO").click(function(){
    $(".oc").slideDown("slow");
    return true;
  });
  $(".trigC").click(function(){
    $(".oc").slideUp("slow");
    return true;
  });

});