Mental health cuts slash through safety net
';
document.querySelector('#copytext').value = textContent;
modal.showModal();
});
// Modal close functionality
const modal = document.querySelector('.republish-modal');
const closeBtn = document.querySelector('.republish-modal-close');
// Close button click
closeBtn.addEventListener('click', function() {
modal.close();
});
// Close on backdrop click
modal.addEventListener('click', function(e) {
if (e.target === modal) {
modal.close();
}
});
// Close on ESC key (this is usually built-in, but adding for safety)
modal.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
modal.close();
}
});
// Copy text button functionality
document.querySelector('.copy-text-button').addEventListener('click', async function() {
const textarea = document.querySelector('#copytext');
const text = textarea.value;
try {
// Try modern Clipboard API first
if (navigator.clipboard && window.isSecureContext) {
await navigator.clipboard.writeText(text);
this.textContent = 'Copied!';
} else {
// Fallback for older browsers
textarea.select();
document.execCommand('copy');
this.textContent = 'Copied!';
}
// Reset button text after 2 seconds
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
} catch (err) {
console.error('Failed to copy text: ', err);
// Fallback to selection if copying fails
textarea.select();
this.textContent = 'Text selected';
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
}
});
});
Sadly, it's often a high-profile crime committed by someone with untreated or inadequately treated mental illness that puts the issue of spending for mental health care back in front of the public. But as headlines fade, so does public willingness to face the consequences of cutbacks on mental health spending. InvestigateWest, together with 10 other reporting centers around the country, drilled down to see what state budget cuts were doing to the mental health safety net.
What we found was disturbing: Beds closing at hospitals, short-term treatment centers, and group homes. Caseloads rising for already over-taxed mental healthcare workers. The population of people with mental illness in jails, emergency rooms and on the street escalating.
The way these stories make the news also frustrates those who have worked hard to erase the stigma of mental illness in society. A huge number of people live with mental illness, and almost none of them commit crimes. The vast majority are not violent. Many, however, do need help and support to stay in school, get jobs, and maintain healthy relationships.
In short, the cuts are quickly dismantling many of the gains that mental health advocates have fought for decades to establish -- access to treatment, support and housing that helps people with mental illness stay well and able to function in their families and communities. As many of those we interviewed in our story pointed out, the short-term cost savings of the budget cuts likely will wind up costing taxpayers more over the long run. You can see the national picture in this story from Amy Biegelsen at the Center for Public Integrity.
The story also was published by The Huffington Post.