jQuery(document).ready(function($) {
    $(".toggle").click(function () {
      $(this).parent().next('.animate').slideToggle('400');
      //$("#animate").slideToggle("slow");
    });
});
