$(document).ready(function()
{  
  $(".toggle_wyd").click(function()  {
    $(this).parent().parent().children().slideToggle(600);
  });
   
});
