function load(){
$(document).ready(function()
{
  //hide the all of the element with class articleBody
  $(".articleBody").hide();
  //toggle the component with class articleBody
  $(".articleTitle").click(function()
  {
    $(this).next(".articleBody").slideToggle(600);
  });
});
}
window.onload = load;

