$(document).ready(function(){
  $(".toggleaware_body").hide();
  $(".toggleaware_head").click(function()
  {
    $(this).next(".toggleaware_body").slideToggle(600);
  });
}); 
