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