Drupal.behaviors.opinionsExtra = function (context) {
  $('.views-field-title', context).click(function() {
      if ($(this).parents('li').hasClass('closed')) {
        $('.opened', context).removeClass('opened').addClass('closed').find('.views-field-body').hide().end()
          .find('.views-field-teaser').show();
        $(this).parent().find('.views-field-body').slideDown('normal').end().find('.views-field-teaser').hide()
          .parents('li').removeClass('closed').addClass('opened');
      }
    });
};