The 18th Judicial District Attorney’s office Monday filed murder charges against an 81-year-old Englewood man in connection with the killing his wife and adult daughter with an ax. The man, Reginald Maclaren, reportedly told police he killed them because the family faced homelessness after he lost his job. Prosecutors filed two charges of first-degree murder, two charges of tampering with a dead body and one charge of making a false report.
Maclaren told police he had recently lost his job and run out of money, according to his arrest affidavit. He said he killed his wife and daughter — Bethany Maclaren, 70, and Ruth Jennifer Maclaren, 35 — so they would not have to face eviction and homelessness. He told investigators he often dealt with the homeless population and knew it was a miserable life.
Maclaren allegedly first reported to police he believed someone the family knew killed his wife and daughter with a hammer. Officers who responded found two-brand new trash cans in the family apartment’s living room, each of which had a body inside, according to the arrest affidavit. They also found an ax in a closet and a hand saw near the garbage cans.
Maclaren reportedly told police he dismembered the bodies so they would fit in the trash cans, but he could not lift them to move them outside.
He’s being held without bond. A preliminary hearing has been scheduled for July 19.
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;
}
}