A driver reportedly hit and killed two people who were trying to repair their car on I-25 near Castle Rock Wednesday, according to the Colorado State Patrol.
Colorado State Patrol responded to a call-for-help at 10:30 p.m. from four Aurora residents whose car had broken down on northbound I-25 near Castle Rock.
The trooper talked with two of them near the car, which had a missing tire. He told two people outside the car to get back in for safety reasons.
As the trooper walked away, a car swerved onto the shoulder and hit the two people, killing them instantly. The trooper was not injured.
After hitting the two people, the vehicle hit a guardrail and stopped. Investigators arrested driver Michelle Branch, 47, after she was taken to the hospital to be checked for injuries. Authorities said they suspected the driver was impaired at the time of the crash.
Branch was booked into the Douglas County Sheriff’s Office jail on suspicion of two counts of vehicular homicide.
“Two lives ended due to one person’s choice to selfishly get behind the wheel while impaired,” Chief of the Colorado State Patrol Matthew C. Packard said in a news release. “This tragedy is another example of people failing to act responsibly, failing to make a plan for a sober ride, and failing to drive within their designated lane.”
According to Colorado State Patrol, 21.6% of fatal crashes investigated from January to July were caused by drivers outside of their designated lanes and 18% were caused by impaired drivers.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
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;
}
}