$(document).ready(function(){
  $('.parents').click(function(){
    // 引数には開閉する速度を指定します
    $(this).next().slideToggle('first');
  });
});