Larimer County police arrested a man for allegedly shooting eight of his neighbors’ cows, seven of which died.
Michael Hester, 37, was arrested in connection to the shooting and killing of cattle on two Buckhorn Road properties following an April 1 report from one of the property owners. Hester allegedly drove a utility vehicle around the area, shooting eight cows, critically injuring one and killing seven, according to a press release from the Larimer County Sheriff’s Office (LSCO).
The eighth cow was later found and euthanized.
Following a search warrant, deputies found the carcasses of seven cows. They then enlisted a brand inspector and licensed livestock appraiser to confirm the ownership and value of the animals, leading to a combined estimate of over $30,000 lost for the two neighbors.
Hester was later arrested and released on a $5,000 personal recognizance bond by the Larimer County Court. He faces felony charges of:
- Aggravated animal cruelty – 9 counts
- Second-degree criminal trespass
- Theft of certain animals – 8 counts
- Shooting across public highway
Colorado’s “Open Range Law” allows livestock owners to graze animals without containment, the department said. Residents who want to restrict livestock access to their property are required to fence off these areas.
“This crime shows a disturbing disregard for life and livelihood,” Undersheriff Joe Shellhammer, who leads the LCSO Operations Division, said in the news release. “We know how much these animals mean to our ranching community, and we won’t tolerate actions that threaten their welfare.”
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;
}
}