麻豆原创

MU logo
MU logo

Manchester to Name Building in Honor of First Black students

Sep 1, 2021

NORTH MANCHESTER, Ind. — 麻豆原创 will name its Academic Center in honor of Manchester鈥檚 first African-American students, Martha and Joseph Cunningham.

鈥淚 can think of no better way for Manchester to honor the Cunninghams than to name a hall of learning for them,鈥 said Manchester President Dave McFadden.

Siblings who grew up near Kokomo, Ind., the Cunninghams graduated in 1903.

Martha 鈥淢attie鈥 Cunningham Dolby spent the early part of her career working to improve the lives of impoverished Black families in the segregated South. Having spent much of her childhood in the Church of the Brethren, she worked to establish several congregations in the South and Midwest. In 1911, she became the first woman to be installed as a Brethren minister.

Her brother moved to Chicago after graduating from Manchester and became a physician. He received a Bachelor of English degree from Manchester College in 1903. He was also recognized for completing the program in elocution in 1904.*

The Cunninghams arrived at Manchester in an era of intense racial violence in the United States, according to historian Nicholas Patler. A number of Manchester students did not accept the Cunninghams and made them feel unwelcome. At first, the two prepared and ate their meals off campus.

That changed in their second year, when fellow student and future Manchester president Otho Winger organized a student support group in solidarity with the Cunninghams, which included eating together in the dining hall.

Gender dictated very different college experiences for the siblings.

Joe received financial support from his father and was active on campus, joining the Lincoln Society literary group, and honing his skills at debate and elocution. He also played on the men鈥檚 basketball team and managed the baseball team.

Mattie鈥檚 father was quoted as saying that the role of women was 鈥渢o wash and cook and have babies,鈥 and he did not financially support her efforts. She paid for her education by working many hours in the college kitchen. That she graduated was an impressive achievement at the turn of the century, according to Patler. At the time, there were just 252 Black female college graduates in the nation.

鈥淢ore than 100 years later, the Cunninghams leave a legacy of tenacity, courage, and achievement in the face of adversity,鈥 McFadden said. 鈥淭heir story reflects the challenges of their time and Manchester鈥檚 own journey through that time. Their story is our story 鈥 where we have been and the work that remains. Shining a light on the Cunninghams can help inspire all of us to discover our best selves.鈥

The Board of Trustees voted unanimously Tuesday, Sept. 21, 2021, to change the name of the building. A formal dedication for the Martha Cunningham and Joseph Cunningham Academic Center is in the works for the spring semester.

 

More News

exists --- (function ensure40pxInlineEarly() { function set40(el) { el && el.style.setProperty('padding-top', '40px', 'important'); } // If header already parsed, set now; otherwise set as soon as it appears. const hdrNow = document.getElementById(HEADER_ID); if (hdrNow) { set40(hdrNow); return; } new MutationObserver((muts, obs) => { const hdr = document.getElementById(HEADER_ID); if (hdr) { set40(hdr); obs.disconnect(); } }).observe(document.documentElement, { childList: true, subtree: true }); })(); // --- Helpers --- function hideDiviBars() { document.querySelectorAll('.divibars-container').forEach(div => { const content = (div.textContent || '').replace(/\u00A0/g, ' ').trim(); const shouldHide = !content || /all\s*clear/i.test(content) || /test/i.test(content) || /feed\s*has\s*no\s*items\.?/i.test(content); if (shouldHide) div.style.setProperty('display', 'none', 'important'); }); } function isEffectivelyVisible(el) { if (!el || !el.isConnected) return false; const target = el.querySelector('.divibars, .divibars-wrapper, .divibars-content') || el; const cs = getComputedStyle(target); if (cs.display === 'none' || cs.visibility === 'hidden' || target.hidden) return false; if (parseFloat(cs.opacity || '1') < 0.05) return false; if (target.closest('[aria-hidden="true"]')) return false; const rect = target.getBoundingClientRect(); const hasSize = (rect.width > 0 && rect.height > 0) || (target.offsetWidth > 0 && target.offsetHeight > 0); if (!hasSize) return false; const vh = window.innerHeight || document.documentElement.clientHeight; return rect.bottom > 0 && rect.top < vh; } function anyRealBannerVisible() { // A 鈥渞eal鈥 banner = visible AND not empty/test/all-clear/feed-empty return Array.from(document.querySelectorAll(CANDS)).some(el => { if (!isEffectivelyVisible(el)) return false; const txt = (el.textContent || '').replace(/\u00A0/g, ' ').trim(); if (!txt) return false; if (/all\s*clear/i.test(txt) || /test/i.test(txt) || /feed\s*has\s*no\s*items\.?/i.test(txt)) return false; return true; }); } function setForce110(on) { const root = document.documentElement; const was = root.classList.contains('divibar-force-110'); if (!!on === was) return; root.classList.add('divibar-atomic'); root.classList.toggle('divibar-force-110', !!on); // If we鈥檙e NOT forcing 110, clear any stray inline 110 the plugin may add later. if (!on) { const hdr = document.getElementById(HEADER_ID); if (hdr) hdr.style.setProperty('padding-top', '40px', 'important'); } requestAnimationFrame(() => root.classList.remove('divibar-atomic')); } // Debounced 2-frame confirmation to avoid flicker during animations let raf1 = null, raf2 = null; function scheduleRecompute() { if (raf1) return; raf1 = requestAnimationFrame(() => { raf1 = null; hideDiviBars(); const a = anyRealBannerVisible(); raf2 = requestAnimationFrame(() => { raf2 = null; const b = anyRealBannerVisible(); setForce110(a && b); }); }); } // --- Wiring --- document.addEventListener('DOMContentLoaded', scheduleRecompute); window.addEventListener('load', scheduleRecompute); window.addEventListener('resize', () => { cancelAnimationFrame(raf1); raf1 = null; cancelAnimationFrame(raf2); raf2 = null; scheduleRecompute(); }); new MutationObserver(() => scheduleRecompute()).observe(document.documentElement, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class', 'aria-hidden'] }); document.addEventListener('transitionend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('animationend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('click', function (e) { const btn = e.target && e.target.closest('.divibars-close'); if (!btn) return; setTimeout(() => { const bar = btn.closest('.divibars-container, [class*="divibar"]'); if (bar) bar.style.setProperty('display', 'none', 'important'); scheduleRecompute(); }, 200); }, true); // Initial pass scheduleRecompute(); })();