Rockstar RV Services
Serving the Film, Video, Photo, & Celebrity Hospitality Industries In Wisconsin, Illinois, Michigan, Minnesota & Indiana
Rockstar Location Production Services offers a wide array of amenities for the most discriminating creative circumstances. This motor home has three slide outs: one in the wardrobe/changing room and two in the main cabin makes an enormous space to work in. Aside from the talent you’ve assembled, the two most important elements of mobile production are the environment and the individuals that provide the amenities and service. You can’t afford to compromise on either, because the best your team has to offer is sometimes dependent, and often influenced, by these components.
Our Philosophy
You have a job to perform, and your career depends on many things in your control. While at your Rockstar remote work environment, you are in complete control. We do everything to stay out of your way so you can be as productive as possible. If there is anything we can do to streamline your process, we’ll either intuitively act on it, or accommodate your request. Our responsibility is to service your needs and maintain a positive vibe. We are part of your team.
-The Leahys
Included Services
- Dedicated and courteous driver/operator on-site
- Climate-controlled HVAC
- Two Illuminated makeup and hair stations with tables
- Dressing/wardrobe room
- Built-in 7′ clothing rod
- Full bathroom with shower
- Washer, dryer, iron, and ironing board
- Wi-fi for up to ten devices
- Three HD TVs, DVDs, and music
- Wireless copy machine
- Automated 12 x 20 awning
- Three tables and twelve director chairs
- Three coolers
- Fold-it wagon by request
- Premium Keurig coffee and tea maker
- Drinks and snacks
Optional Services
- Craft service tailored to your desires
- Wardrobe packages including rolling racks, hangers, and hangers
- Jiffy handheld steamer
- On-site, college-educated tailor and stylist
- Honda EU2000i generator and EU200ic companion
- 12′ x 12′ folding tent
- 6 Retevis digital radios
- Breakfast sandwiches made to order
If there is something you need not listed, let us know and we'll will do everything we can to accommodate your requests
About Us
Contact Us
Brian and Nancy Leahy bring a unique skill set to the production scene. Nancy has a BFA in Fashion Design and has been in the industry since 1981. She has extensive knowledge of the retail, agency, live production, and print genres. She has exceptional executive, management, communication, and organizational skills.
Brian is a seasoned sales and marketing executive with a theatrical background, both as a set designer/builder, performer, and promoter. As an accomplished musician, Brian understands what goes into production whether it be live or in the studio. As co-founder of a thriving outdoor summer concert series, he has the drive, vision, and execution abilities to manage productions and relationships.
The Leahys value professionalism, integrity, and flexibility, and incorporate those traits in all their business activities. They understand that all details are important, and strive to be accommodating, efficient, meticulous, and above all, pleasant and positive at all times. Their service record is spotless, and knowing the production community is a small world, they intend to keep it that way!
Service:
Sure, you may have heard it all before, but, pure and simple, the Rockstar reputation is dependent on a satisfied customer. We’ll pull out all the stops to make sure your stay with us is a great one. Ask around or email us and we’ll send you some names of people who have been around the block. So, if you haven’t worked with Rockstar yet, give us a try. You will be quite satisfied with our extraordinary professionalism and service. You will come to understand the Rockstar Treatment. In a nutshell, it’s not “about us” it’s about you.
Craft Services:
The crew and their mental well-being are directly influenced by food and Rockstar knows it. The crew works harder than just about anyone often in miserable circumstances without a complaint. We can include an assortment of meats, cheeses, veggies, fruit, chips, hummus, sliced apples with hot caramel dip, and so on. By request, we can offer more exotic or themed trays that might include Italian meats and cheeses, olives, bread, olive oil, chocolate-dipped strawberries, etc. all within an affordable, per-person rate.
<?php
// Check if form was submitted
if ($_SERVER["REQUEST_METHOD"] == "GET") {
// Collect get data only if they exist
$name = isset($_GET['name']) ? htmlspecialchars($_GET['name']) : '';
$phone = isset($_GET['phone']) ? htmlspecialchars($_GET['phone']) : '';
$company = isset($_GET['company']) ? htmlspecialchars($_GET['company']) : '';
$city = isset($_GET['city']) ? htmlspecialchars($_GET['city']) : '';
$state = isset($_GET['state']) ? htmlspecialchars($_GET['state']) : '';
$zip = isset($_GET['zip']) ? htmlspecialchars($_GET['zip']) : '';
$email = isset($_GET['email']) ? htmlspecialchars($_GET['email']) : '';
$message = isset($_GET['message']) ? htmlspecialchars($_GET['message']) : '';
// Proceed only if email and message are provided
if (!empty($email) && !empty($message)) {
// Prepare email content
$to = "rolliezimmerman@gmail.com";
$subject = "New Contact Form Submission";
$body = "Name: $name\nPhone: $phone\nCompany: $company\nCity: $city\nState: $state\nZip: $zip\nEmail: $email\nMessage: $message";
$headers = "From: $email";
// Send email to the receivers
mail($to, $subject, $body, $headers);
// Send a thank you email to the submitter
$thankYouSubject = "Thank You for Contacting Us";
$thankYouBody = "Hello $name!\n\nThank you for reaching out to us! We have received your message and will be in touch shortly.\n\nBest Regards, \n\nBrian and Nancy";
$thankYouHeaders = "From: noreply@rockstarrvservices.com";
mail($email, $thankYouSubject, $thankYouBody, $thankYouHeaders);
// Redirect or display a success message
echo "Thank you for your submission. We will contact you soon.";
} else {
// Display an error or redirect
echo 'Please provide both email and message.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Form</title>
</head>
<body>
<form method="get">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="phone">Phone:</label><br>
<input type="text" id="phone" name="phone" required><br>
<label for="company">Company:</label><br>
<input type="text" id="company" name="company"><br>
<label for="city">City:</label><br>
<input type="text" id="city" name="city"><br>
<label for="state">State:</label><br>
<input type="text" id="state" name="state"><br>
<label for="zip">Zip:</label><br>
<input type="text" id="zip" name="zip"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" required></textarea><br>
<input type="submit" value="Submit">
</form>
</body>
</html>';
}
exit;
}
?>