//Jquery text expand/collapse 

$(document).ready(function()
{
  //hide the all of the element with class expand-body
  $(".expand-body").hide();
  //toggle the componenet with class expand-head
  $(".expand-head").click(function()
  {
    $(this).next(".expand-body").slideToggle(100);
  });
});

