$(function(){
  $('.readOn').click(function(e){
    e.preventDefault();
    $(this).next('.readOnText').slideToggle();
  })
})
