$(document).ready(function() {
  if($('div.trigger2').length > 0) {
    $('div.trigger2').click(function() {
        if($(this).hasClass('open2')) {
        $(this).removeClass('open2');
        $(this).addClass('close2');
        $(this).next().slideDown(100);
        return false;
      } else {
        $(this).removeClass('close2');
        $(this).addClass('open2');
        $(this).next().slideUp(100);
        return false;
      }
    })
  }
})
