鶹ԭ

MU logo
MU logo

Manchester Symphony Orchestra offers March 8 Invocation

Feb 26, 2026

An invocation is an appeal for help or support, often a prayer that seeks a blessing or guidance.

The Manchester Symphony Orchestra invites you to attend its Invocation concert at 3 p.m. on Sunday, March 8in鶹ԭ’s Cordier Auditorium.

Tickets are $20 ator at the door. As part of the MSO’s education outreach, admission is free for everyone 18 and younger, as well as all college students (with ID).

The concert begins with “Invocation” by Gustav Holst, a quiet, meditative piece featuring MSO principal cellist Robert Lynn. It is followed by Errollyn Wallen’s busy and exuberant “Mighty River.”

“I’vewanted to perform ‘Mighty River’ for a while,” said MSO Conductor Debra Lynn. “It isa minimalistwork, a genre wedon’toften perform at the MSO. It is an excellent technical challenge for our musicians and offers something fresh and new for our audience.”

“Mighty River” employs a sense of perpetual motion as it weaves its story, featuring the hymn “Amazing Grace” and the spirituals “Deep River” and “Go Down Moses.” Composed in2017, ithonors William Wilberforce, whose tireless work abolished slavery in England. The hymn “Amazing Grace” was written by John Newton, a slave ship captain whose conversion to Christianity came about following a deadly storm at sea. He later became an abolitionist, and his hymn has since become associated with the end ofthe slavetrade.

The second half of the concert features area choirs: Manchester Symphony Chorus, Debra Lynn, conductor; 鶹ԭ A Cappella Choir, Cassandra Petrie, conductor; and Purdue University Fort Wayne University Singers and Choral Union, William Sauerland, conductor.

“When Dr. William Sauerland and I decided to combine forces for achoral-orchestrapiece for this concert, I had in mind that I would do something Baroque because that’s a challenging musical style for the MSO,” Lynn said. “Most choral-orchestra works from that period are sacred, and I love Marc-Antoine Charpentier’s ‘TeDeum.’ Much of it is very bubbly and upbeat, which makes it great for audiences who might think old orchestra music is boring,” she said.

“Since the ‘TeDeum’ is short, I suggested that Billy select a piece he might like to conduct. He proposed David Conte’s ‘Elegy for Matthew’ because Matthew Shepard would have turned 50 in 2026.” Shepard died at the age of 21, the victim of a brutal hate crime.

“The elegy is a stark contrast to the ‘TeDeum, so the two choral works are a good pairing. Also, both works are prayers, so they are fitting selections for the Invocation concert.” Lynn said.

The Manchester Symphony Orchestra’s 87th Season ends with its Take Flight concert at 3 p.m. Sunday, May 3inHoneywell’s Eagles Theatre, presenting the world premiere of “The Flock” composed and performed by guest artists Warren & Flick. The duo of Jacob Warren and Grant Flick, Honeywell Arts Academy alumni, crafts a compelling sound that blends original composition and improvisation.

Other works on the program include: “A small white cloud drifts over Ireland” bySeóirseBodley “Inventing Flight” by William Bolcom and “Flying Theme” from E.T. the Extra Terrestrial by John Williams.

North Manchester is one of the smallest communities in the nation with its own symphony orchestra. Residents of Wabash County and what was then Manchester College founded the symphony in 1939. That partnership continues today, in its 87thseason, with a carefully crafted collaboration of professional and community musicians, as well as selected 鶹ԭ faculty, staff, and student musicians. Learn more at.

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 “real” 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’re 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(); })();