$(document).ready(function() {
 $('section.adv-theory > article').hide();  
 $('section.adv-theory > header').click(function() {
  $(this).next().slideToggle('fast');
  });
});


