$(document).ready(function()
{
  $(".slide").hide();
  $(".push").click(function()
  {
    $(this).next(".slide").slideToggle(100);
  });
});
