Today's Digital Newspaper

The Gazette

Weather Block Here



Denver prayer vigil held after attack on Israel

The war that raged over the weekend in Israel came home to Colorado Monday evening as more than a thousand people from the Jewish community and other faiths joined for a prayer vigil at Temple Emanuel in Denver.

“This is a moment we haven’t seen since 1973, unprecedented in my lifetime,” said Ben Lusher, board chair of Jewish Colorado, as a long line waited to enter the sanctuary at Emanuel.

Jewish Colorado sponsored the event in concert with other Jewish organizations, such as Rocky Mountain Rabbis and Cantors.

The evening was offered as a time for mourning, prayer and solidarity in the wake of the surprise attack Saturday that took a reported 900 lives – including those of 11 Americans.

Like many others in the crowd, Lusher was worrying about family in Israel – in his case, his parents Barry and Gay Curtiss-Lusher, who told their son by phone that they were shuttling between their Tel Aviv hotel and a bomb shelter, sometimes for false alarms, sometimes for actual bombs exploding.

“They’re frazzled,” Lusher told The Denver Gazette. “They heard Iron Dome going off,” referring to the Israeli antimissile system.

After several U.S. airlines canceled flights to and from Israel in the wake of the attack, Lusher now has his parents booked Tuesday on an El Al flight to Athens after hearing that El Al has reportedly continued operating. But he has backup flights for them later in the week to Lisbon and Los Angeles, if necessary.

The outbreak of war had personal consequences for many Colorado families, according to Rabbi Yaakov Chaitovsky of Congregation BMH-BJ in Denver, who was among many Jewish leaders at the vigil.

“The shock of what has taken place is mind boggling,” he told The Denver Gazette before the gathering. “More civilians have died than soldiers. Music festival goers were indiscriminately murdered. Women, children, and senior citizens are now hostages in Gaza. Americans are among the dead and the captured.”

Chaitovsky added: “What has happened has shaken our Jewish brothers and sisters there to the core. It will be some time before anyone is ‘OK’.”

Scott Levin, regional director of the Mountain States ADL, told the gathering that Saturday had represented the single largest daily death toll suffered by the Jewish community since the World War II Holocaust. He was joined on the platform by members of Colorado’s congressional delegation and Denver Mayor Mike Johnston.

Rabbi Avraham Mintz of Chabad Jewish Center of South Metro Denver, which had just completed its round of high holiday services at sites in Greenwood Village and Lone Tree, told The Denver Gazette he has at least two worshipers who were climbing aboard flights to Tel Aviv, responding to callups for reservists by the Israeli Defense Forces.

One of those, he said, was leaving a wife behind and a young daughter enrolled in the synagogue’s school.

Mintz said the attack, carried out as Jews celebrated their Simchat Torah holiday, cast a pall over Sabbath services Saturday, during what is generally among the most joyous events of the faith’s calendar year. On Simchat Torah, Jews celebrate concluding their year-long reading of the first five books of the Bible and then return to the cycle again.

“I would never have believed it. It was challenging, a different kind of rejoicing with broken hearts,” Mintz said.

Sign Up For Free: AM Update Newsletter

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}

Featured Local Savings

He added: “With the pain that so many are going through, we have to overcome this darkness with light and goodness, and let the world know that what happened is not OK.”

“What’s being done by Hamas is horrific, a level of terrorism the world has never seen,” said Lowry resident Larry Greer, who with his wife Marian was among the large crowd waiting in line to get in.

“We have never before seen this massive hostage taking, of women, children, old people,” Greer said. “There’s a place for prayer, a place for support, but then I don’t know.”

As she waited with her husband, Marian Greer said the events would inevitably come back as an even greater catastrophe for people living in Gaza.

“They’re bringing disaster to their own people,” she said.

Members of the Jewish community were joined at the event by clergy from other faiths who turned out in support of Israel.

“Heartbreak,” replied Father Michel Nicosia of St. Paul Catholic Community of Faith, when asked about his first reactions to Saturday’s attacks. He said he was representing the Colorado Council of Churches.

“It’s just appalling, especially when we don’t have our government together so we can coalition with Israel,” said Pastor Paul Burleson of 500-member Friendship Baptist Church in Denver.

Burleson, who serves as political affairs chair for the Greater Denver Ministerial Alliance, said he had turned out to show support from the broader community.

“We’re invested,” he said.

“The world can now see Hamas’s true colors,” Rabbi Chaitovsky told The Denver Gazette. “Those who have been reluctant, for whatever reason, to label Hamas a terrorist organization must honestly change their perspective.

“I doubt that will actually happen, but it clearly should.”

The event at Temple Emanuel concluded with a Jewish prayer for the dead sung by BMH-BJ Cantor Martin Goldstein.

Other event sponsors included the Jewish Community Relations Council, the Anti-Defamation League, Israeli American Council, American Israel Public Affairs Committee, and the Jewish National Fund.

5ebed6ee-6720-11ee-803a-77c4faae3032

View Original Article | Split View

PREV

PREVIOUS

Lylaus Keyes who brought Denver schools segregation lawsuit 50 years ago, has died

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Lylaus Keyes — whose name is forever attached to a pivotal 1973 Supreme Court decision involving segregation in Denver — has died. Keyes died on Oct. 1. She was 97. Keyes and her late husband, Wilfred Keyes, a chiropractor turned insurance salesman, were the lead […]

NEXT

NEXT UP

Eldorado's treasure: Throwback rock climbing endures at Colorado canyon

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Two or three days a week, Adam Brink departs life and work in Boulder and drives south, watching the city fade and a wild, colorful realm of rock emerge. “It’s a place where you can escape the constraints of an over-civilized world,” Brink says. “You’re […]