Today's Digital Newspaper

The Gazette

Weather Block Here



Modern-day Western film shot entirely in Cripple Creek, Victor set for release

When Steve Kitzman landed in Teller County six years ago to work as Cripple Creek’s marketing and events director, little did he know he’d be filming a modern-day Western on its streets years later.

But the Colorado Springs filmmaker couldn’t help himself. The rustic, Wild West-reminiscent scenery of Cripple Creek and Victor desperately sang out for some sort of gold heist gone bad flick, and he wrangled up his longtime friend, Stephen Morgan, to help.

The result is “Rook,” a 70-minute movie shot over 12 days in November 2018 in the two mountain towns with a largely all-Colorado cast. They did manage to nab Lew Temple, a Hollywood guy who’s perhaps best known for his role as Axel on “The Walking Dead.” After his wife saw Kitzman and Morgan’s short film based on “Rook” at the Denver Film Festival, she talked her husband into doing it.

080220 rook 10.jpg

Zack Rush stars in "Rook." His character comes to a small Colorado gold mining town and convinces his bar-owning sister to go in on a gold heist.

Courtesy of Studiotown

080220 rook 10.jpg

Zack Rush stars in “Rook.” His character comes to a small Colorado gold mining town and convinces his bar-owning sister to go in on a gold heist.






“It’s a story of greed and how it can get out of control and the carnage it can leave behind,” says Kitzman, the film’s producer. “There’s a pretty big surprise ending. We want people to think a little bit.”

In the film, ne’er-do-well Ben (Zack Rush) rolls into a Colorado gold mining town looking for his sister, Annie, a bar owner (Sarah Johanna Jewell). He’s concocted a scheme to steal unsmelted gold from a gangster (Tom Borrillo) and needs a partner in crime. Annie reluctantly accepts, and, no surprise, it all goes sideways from there.

080220 rook.jpg

Zack Rush and Colorado Springs actor Omid D. Harrison star in the film "Rook," filmed in Cripple Creek and Victor.

Courtesy of Studiotown

080220 rook.jpg

Zack Rush and Colorado Springs actor Omid D. Harrison star in the film “Rook,” filmed in Cripple Creek and Victor. 






Kitzman and Morgan got distribution as first-time filmmakers through Gravitas Ventures and are set to officially release the film Aug. 11. If things go well, it’ll stream on Netflix. It’s available now for pre-orders on iTunes. It also can be pre-ordered on Blu-ray and DVD through Amazon, Turner Classic Movies and Walmart. Watch the trailer online at rookfilm.com.

Morgan, who moved to the Springs a few years after Kitzman, co-wrote the script with Isaac Walsh and directed. Morgan also is the founder and president of Studiotown, the Springs-based production company behind “Rook.”

“The story just started unfolding,” Kitzman says. “A lot of it is inspired by real-life events and people. The towns themselves are such characters.”

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=76&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/blue%20bear.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/blue%20bear.png);
background-size: cover;
}
}

Featured Local Savings

The movie drew great support from Teller County residents and businesses, including the casinos, he says, which helped them do much more than their modest budget first allowed.

“We already did screenings in Victor and Cripple Creek,” Kitzman says.

“They’d been waiting a long time to see it. There are a lot of little Easter eggs in the film if you live up there or are very familiar with Cripple Creek or Victor. The locals got a real kick out of it.”

080220 rook 8.jpg

Photos courtesy of Studiotown Sarah Johanna Jewell stars in the modern-day Western movie “Rook.” It will be officially released Aug. 11, but is available for pre-orders now.

Courtesy of Studiotown

080220 rook 8.jpg

Photos courtesy of Studiotown

Sarah Johanna Jewell stars in the modern-day Western movie “Rook.” It will be officially released Aug. 11, but is available for pre-orders now.






Jewell is one of those former locals. The actor spent part of her youth in Lake George before her family moved to Arkansas. She started acting in high school before heading to Los Angeles to study theater at Loyola Marymount University. Post-college she studied at Baron Brown Studio and has steadily earned TV and film roles since. Two years ago she shot “Emma,” a TV pilot that’s still being shopped around. She’ll shoot another TV pilot in Florida in a couple of months.

Her role in “Rook” came through word of mouth. Her parents moved back to Lake George when she went to college, and her mother, a freelance reporter for the Pikes Peak Courier, a Gazette publication, got to know Kitzman through his Cripple Creek marketing duties. When she found out he was producing a movie, she suggested her daughter.

“It’s funny,” says Jewell from Arkansas, where she’s temporarily living. “You can go to California and get all the training, but it’s all about who you know. If it’s your mom, it’s your mom. But any chance to go back to Colorado, I’m down for.”

As it turns out, Jewell was a package deal. Her real-life boyfriend, Rush, stars as her brother in “Rook.” They met at Baron Brown Studio, a drama school in Santa Monica, Calif.

“We had chemistry already,” she says. “They didn’t have to worry about that, which is a big deal when you’re casting people who have to be related. We had a few scenes where we had to argue pretty hard. We got that down pretty good. It could have been bad if you find out something about somebody you didn’t know, but we worked really well together.”

Contact the writer: 636-0270

Contact the writer: 636-0270

ab8ce50f-cb7d-528e-8ab9-04e498f03878

View Original Article | Split View

PREV

PREVIOUS

Family friendly tourist destination north of Colorado Springs doubles in size after remake

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save VIDEO | Jellystone Park in Larkspur Keep a close eye on your pic-a-nic basket. Yogi Bear has a new home just north of Colorado Springs. Jellystone Park in Larkspur, which opened on Memorial Day weekend […]

NEXT

NEXT UP

Walmart to offer drive-in movies in Colorado

Facebook Twitter WhatsApp SMS Email Print Copy article link Save Facebook Twitter WhatsApp SMS Email Print Copy article link Save Walmart Supercenters across the country are set to provide a new service this summer: drive-in movies.  Drive-in movies, concerts and comedy shows to see this weekend around Colorado Beginning Aug. 14, the parking lots of […]