  $(document).ready(function()
   {
   $(".toggable").hide(); 
   $(".switch").click(function()
  {
    $(this).next(".toggable").toggle("slow");
  });
});


