$(function()
    {
      $(".cb_toggle").click(function()
          {
            var id = $(this).attr('id');
            var target_class = id.substring(7);
            if ($(this).is(':checked'))
              {
                $("." + target_class).show();
              }
            else
              {
                $("." + target_class).hide();
              }
          });
    }
  );
