var interests_regex=/^https:\/\/secure\.nrdconline\.org\/site\/ConsInterestsUser.*/i;

if( interests_regex.test(document.location.href) ) {
  jQuery(document).ready(function() {
      class_found = false;
      jQuery("#ConsConfigInterests").children().each(function (i) {
        element = jQuery(this);
        class_pattern = /SectionHead/gi;
        html_pattern = /^The following interests/gi;
        if (element.attr("class") && class_pattern.test(element.attr("class")) && html_pattern.test(element.html())) {
          class_found = true;
          element.css("display", "none");
        }
        if (class_found && this.tagName == "TABLE")
          element.css("display", "none");
      });
      
  });
}
/*
jQuery(document).ready(function() {
  //Hide Special Interests link on profile page
  jQuery('td ul li a[href*="secure.nrdconline.org/site/ConsInterestsUser"]').parent().hide();
});
*/
