$(function() {

  $('.openter').next().hide();

  $(".tut_1").parent().show();

  $('.stopprop').click(function(e) {
     e.stopPropagation(); 
  });

  $('.openter').click(function(e) {
      //$('.openter').next().hide();
      $(this).next().toggle('slow', 'swing');
      e.preventDefault();
  });


});
