Today's Digital Newspaper

The Gazette

Weather Block Here



Judge says Adams County deputy not liable for death of unlicensed teens in defective truck

A sheriff’s deputy who directed two unlicensed teenagers to drive a defective commercial truck home cannot be liable for their subsequent deaths at a dangerous intersection in rural Adams County, a federal judge has found.

The estate of April Blackmon-Logan alleged Deputy Chad Jenkins created or increased the risk that Blackmon-Logan would be put in danger through his actions on the night of July 26, 2019. The lawsuit also contended that Sheriff Rick Reigenborn failed to enact policies that would have prevented the deaths of Blackmon-Logan and Leah Ford, both 18.

Colorado judge who pointed AR-15-style rifle at stepson is suspended

U.S. District Court Chief Judge Philip A. Brimmer rejected the attempt of Blackmon-Logan’s estate, represented by her father, to claim Jenkins had violated Blackmon-Logan’s constitutional rights, when the deputy had at most acted recklessly or negligently.

“Although directing Ford and Blackmon-Logan to drive a malfunctioning truck that they did not know how to operate in an unfamiliar, rural area raised the risk that something catastrophic could happen to them,” Brimmer wrote in an Aug. 24 order, “the Estate has not shown that Deputy Jenkins’s conduct shocks the conscience or that Deputy Jenkins disregarded risks that he knew about.”

Brimmer’s decision comes nine months after another federal judge dismissed a similar lawsuit from Ford’s mother over her daughter’s death in the same incident.

Close to midnight on July 26, Jenkins pulled over the flatbed commercial pickup truck in which Blackmon-Logan and Ford were riding as passengers. Ford’s boyfriend, Michael Linnebur, was driving the truck, which belonged to his employer.

Jenkins allegedly found problems with the truck, including a defective headlight and tail light. He also placed Linnebur under arrest on an outstanding warrant, reportedly for a previous traffic violation. 

Judge allows retaliation lawsuit to proceed against CSU officials

The traffic stop took place in a remote area of Adams County around Imboden Road and East 88th Avenue. Although police told media at the time that Jenkins “allowed” the teenage girls to take over for Linnebur in driving the truck, the lawsuit alleged Jenkins “ordered” Ford to drive it home.

Reportedly, Jenkins did not ask to see the driver licenses of either Ford or Blackmon-Logan — both of whom were unlicensed. Instead, the deputy showed the girls how to operate the truck’s emergency flashers and turn the headlight high beams off and on, and sent them on their way.

“Jenkins took the foregoing actions with the intent to create a deceptively false sense of security in both Ford and the decedent, to give them confidence that the defective flatbed-commercial truck was safe to drive — even at night with non-working headlights and taillights,” the lawsuit from Blackmon-Logan’s estate said.

Sign Up For Free:

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 if (fullPath.includes(‘outtherecolorado’)) {
pathVariable = ‘outtherecolorado’;
pathVariable2 = ‘Out There Colorado 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();
setupFormSubmitListener();

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

Reportedly, Linnebur warned the deputy that neither Ford nor Blackmon-Logan knew where they were. Several minutes later, the truck approached the intersection of East 88th Avenue and Highway 79. 9News reported the location was the site of multiple fatal crashes, given that only a stop sign governed the two high-speed roads. Ford did not stop, and a tractor trailer truck slammed into the girls’ vehicle and killed them.

The lawsuits against Jenkins alleged he had deprived the teenagers of their life and liberty under two legal theories: the “danger creation” theory and the “special relationship” doctrine. Danger creation allows a government official to be held liable if a third party deliberately inflicts injuries, as long as the government worker created the dangerous circumstances.

In contrast, a special relationship exists when the government exercises some form of custody over a person and is obligated to protect them from third parties.

Blackmon-Logan’s estate claimed Jenkins had ignored multiple immediate risks in telling the unlicensed teenagers to drive a defective commercial truck home, and they felt obligated to comply with the deputy’s orders.

“Bluntly, Deputy Jenkins’s conduct is akin to playing a game of Russian roulette,” wrote Hillary R. Ross, an attorney for Blackmon-Ford’s estate. “Any reasonable person, much less a trained Sheriff’s deputy, would realize that a passenger with an unlicensed, inexperienced driver in the middle of the night, in the middle of nowhere, on a dark highway could easily be driving to her death.”

In November, U.S. District Court Senior Judge Lewis T. Babcock dismissed the related lawsuit from Ford’s estate. He explained that the danger creation theory generally applies to government officials’ role in the murder, assault or abuse inflicted by others. Ordering a driver to move a vehicle, only to have the driver ignore a stop sign and crash, did not fit under that framework, Babcock decided. Furthermore, there was no special, custodial relationship that required Jenkins to protect the girls.

Former Westminster police officer convicted on sexual misconduct charges

The deputy’s conduct “could be deemed negligent and clearly, in retrospect, ill-advised. But it does not rise to the level of outrageousness to shock the conscience,” Babcock wrote.

Brimmer’s reasoning in Blackmon-Logan’s case largely mirrored that of Babcock. Adams County had argued Jenkins could not have known a fatal accident was likely, and Brimmer agreed there were no prior court cases that held a deputy liable for a constitutional violation under similar circumstances.

Because Jenkins had not committed a violation, Brimmer also dismissed the claims against Reigenborn. The judge then declined to act on Blackmon-Logan’s remaining allegations of negligence, which arose entirely under Colorado law.

Attorneys for Blackmon-Logan’s estate did not immediately respond to a request for comment. A spokesperson for the Adams County Sheriff’s Office declined to offer a statement, but confirmed Jenkins retired in 2021.

The case is Estate of April Blackmon-Logan v. Jenkins et al.

ddbb2ba0-3fd3-5b1b-b475-fa57f5e104c5

View Original Article | Split View

PREV

PREVIOUS

Pastor Ted Haggard denies new allegations of sexual misconduct, says he won't step down

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Some former members of Saint James Church in Colorado Springs continue to call for founder Ted Haggard to step down from the pulpit — citing what they say is firsthand knowledge the pastor has behaved inappropriately toward male members and used drugs in recent years — but […]

NEXT

NEXT UP

Colorado judge who pointed AR-15-style rifle at stepson is suspended

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Mark D. Thompson, a judge in the Fifth Judicial District who pleaded guilty this year to the misdemeanor offense of disorderly conduct, will receive a 30-day unpaid suspension for violating the judicial code of conduct with his actions. The Colorado Supreme Court issued its sanction […]