$(function() {
// Add heading semantics to heading if no h1 or h1 roles on page
if (!$('h1').length || !$('[aria-level="1"]').length) {
var heading = $('.ku-branding-text-major');
if (heading.length) {
heading.attr('role', 'heading');
heading.attr('aria-level', '1');
}
}
});