$(document).ready(function()
{
   $(".zaloga").click(function () 
   {
      var id=$(this).attr('id')
      $("#w"+id).slideToggle("slow")
   });
   
   $('.zaloga').each(function()
   {
      var id=$(this).attr('id')
      $("#w"+id).slideToggle(0)
   })
});
