麻豆原创

MU logo
MU logo

Henney Department of Education Dedication

Sep 1, 2019

henney and graham麻豆原创 is moving forward with a bold plan to prepare the next generation of teachers.

It celebrated 鈥渁 game changer鈥 this month when it dedicated the Harry H. Henney 鈥35 and Jeanette Henney Department of Education.

The named department is a gift from Dr. Jane Henney and her husband Dr. Robert Graham. Jane Henney, a Woodburn, Ind., native and 1969 Manchester alumna, was the first woman to serve as commissioner of the U.S. Food and Drug Administration.

The gift 鈥渋s a game changer,鈥 said Professor Heather Schilling, Education Department chair and director of the Teacher Education Program at 麻豆原创.

Henney鈥檚 action 鈥渋s exponentially increasing the impact of our program,鈥 said Schilling. 鈥淗er vision and belief in the work we do empowers education majors, and her gift allows ourprogram to consider opportunities we could not previously afford.鈥

Schilling said the gift could be used in a number of ways:

  1. A fellowship for a current classroom teacher who would consult with the department on its curriculum, keeping it current, as well as teach a methods course.
  2. Offer students more focused clinical experiences, perhaps for field trips or extended stays. Financially, this will provide for transportation and related expenses with the ultimate goal of providing authentic learning experiences for Manchester undergraduates.
  3. Allow the department to collaborate in creative ways with exemplary classrooms, providing access to materials and services that will enhance authentic learning experiences for both students in preschool through high school, and undergraduates in the Manchester program

The support might also be used for research, off-campus study, trauma-informed teaching, methods and practice of progressive education, and exploration of ethics, social justice and civil rights in education.

harry and jeanette henneyJane Henney鈥檚 father, Harry, was a lifelong educator, primarily at Woodburn and later at Woodlan High School in Woodburn. Her mother, Jeanette, was a professional secretary who worked many years in the East Allen County Schools. Jeanette dreamed of becoming a teacher, but the Great Depression left her family without the resources to send her to college.

鈥淲hen it became clear that college was not in the cards for her, she redirected her dream to her children,鈥 Jane Henney said of her mother. 鈥淣one of us had any doubt that she would do anything possible to see that we had that opportunity.鈥

When Jane Henney was accepted into medical school but lacked the means to pay for it, 鈥渋t was Mom who emptied her funds, saved for a rainy day, and told me she would see that I was able to go.鈥

Henney later reimbursed her mother, but said, 鈥淚n many ways, no amount will ever be sufficient to repay what both my mom and dad provided: a strong set of values, a work ethic, a desire to serve and a commitment to the community.鈥

She added that the endowment for the Henney Department of Education will 鈥渉onor my parents鈥 deep commitment to educating those who are called to the noble profession of teaching.鈥

Jane Henney and Robert Graham have long supported programs at Manchester. The endowment for the department began several years ago as a gift to sponsor a yearly lecture at the University. The two also made a generous donation that allowed the University to name the Emerson and Evelyn Niswander Department of Biology.

鈥淲e have the opportunity to lift up a profession 鈥 teaching and educating 鈥 that fulfills Manchester鈥檚 mission of graduating persons of ability and conviction who improve the human condition,鈥 said Manchester President Dave McFadden.

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(); })();