麻豆原创

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 8听in听麻豆原创鈥檚 Cordier Auditorium.

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

The concert begins with 鈥淚nvocation鈥 by Gustav Holst, a quiet, meditative piece featuring MSO principal cellist Robert Lynn. It is followed by Errollyn Wallen’s busy and exuberant 鈥淢ighty River.鈥

鈥淚’ve听wanted to perform 鈥楳ighty River鈥 for a while,鈥 said MSO Conductor Debra Lynn. 鈥淚t is听a minimalist听work, a genre we听don’t听often perform at the MSO. It is an excellent technical challenge for our musicians and offers something fresh and new for our audience.鈥

鈥淢ighty River鈥 employs a sense of perpetual motion as it weaves its story, featuring the hymn 鈥淎mazing Grace鈥 and the spirituals 鈥淒eep River鈥 and 鈥淕o Down Moses.鈥 Composed in听2017, 听it听honors William Wilberforce, whose tireless work abolished slavery in England. The hymn 鈥淎mazing 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 of听the slave听trade.

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.

鈥淲hen Dr. William Sauerland and I decided to combine forces for a听choral-orchestra听piece 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. 鈥淢ost choral-orchestra works from that period are sacred, and I love Marc-Antoine Charpentier鈥檚 鈥楾e听Deum.鈥 Much of it is very bubbly and upbeat, which makes it great for audiences who might think old orchestra music is boring,鈥 she said.

鈥淪ince the 鈥楾e听Deum鈥 is short, I suggested that Billy select a piece he might like to conduct. He proposed David Conte鈥檚 鈥楨legy 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.

鈥淭he elegy is a stark contrast to the 鈥楾e听Deum, 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鈥檚 87th Season ends with its Take Flight concert at 3 p.m. Sunday, May 3听in听Honeywell鈥檚 Eagles Theatre, presenting the world premiere of 鈥淭he 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: 鈥淎 small white cloud drifts over Ireland鈥 by听Se贸irse听Bodley 鈥淚nventing Flight鈥 by William Bolcom and 鈥淔lying 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 87th听season, 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 鈥渞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(); })();