function enableRssSettingsControls() {
  // prepare
  jQuery(".checkboxes.purpose span :input[checked]").each(function(){
    jQuery(this).parent().addClass("onn");
  })
  // set
  jQuery(".checkboxes.purpose span").each(function(){
    jQuery(this).click(function(){
      jQuery(this).toggleClass("onn");
      var child_input = jQuery("input", this).get(0);
      child_input.checked = !child_input.checked;
    })
  });

  // prepare
  jQuery(".checkboxes.kind span :input[checked]").each(function(){
    jQuery(this).parent().addClass("onn");
  })
  // set
  jQuery(".checkboxes.kind p.line span").each(function(){
    jQuery(this).click(function(){
      jQuery(this).toggleClass("onn");
      var child_input = jQuery("input", this).get(0);
      child_input.checked = !child_input.checked;
    })
  });
}