$(document).ready(function(){
  $('.ekurs-header').click(function() {
    var content = $(this).next();
    if(content.css('display') == 'none') {
      content.show(200);
    } else {
      content.hide(200);
    }
    
  });
});
