

$(document).ready(function(){
  $(".pressexpand").click(function () {
    $(this).next('div').slideToggle("slow");
  });
}); 

