X

Rental Trailer: 8.5'x20' Top Hat Trailers Deckover/Equipment

Standard Equipment

* ST 235/80R/16 LRE Tires on 8-Hole 
* 7000# Dexter EZ-Lube 1/2 Cambered Elec Brake Axles 
* Coupler: 2 5/16" Forged Adjustable 5/Position
* Jack: 10000# Drop Leg 
* Floor: 2" Treated Pine
* Break Away Unit w/Charger
* Spare Rack
* Color: Black
* No ramps

Frame Structure

* Frame/Tongue Integrated 8" x 10# I-Beam
* Crossmembers: 3" Channel 16" OC
* Side Rails: 5x3x1/4
* Stake Pockets
* 3/8x2 Rubrail
* Expanded Metal Tray in Tongue
* Deck Height: 32" 

Vehicle and Equipment Requirements
To tow one of our trailers, your vehicle must have the proper equipment:
  • A hitch system: This includes the receiver hitch, ball mount, and ball.
  • Lighting connections: Your vehicle needs to be able to connect to the trailer's lights.
  • A brake controller: If the trailer you're renting has electric brakes, you must have a functioning brake controller installed and use it.
It's your responsibility to make sure the trailer you rent is within your vehicle's towing capacity. Not all vehicles can tow all trailers, and we will deny the rental if your vehicle doesn't meet our towing standards.
Rental Policies
  • Required documents: You must provide a valid driver's license, a credit card, and current proof of insurance.
  • Rental area: Trailers cannot be taken more than 300 miles from 51 Trailer Sales unless you get prior approval.
  • Cleaning and damages: You are responsible for returning the trailer in a clean condition. If it's not clean, you will be charged an additional fee of at least $150. You are also responsible for any damages that occur during your rental period.
  • Early returns: We do not offer refunds for trailers that are returned early.
  • Right to refuse service: We reserve the right to refuse service to any customer.
  • Rental Contract: All rentals are subject to the terms outlined in our rental contract.
Rental Trailer: 8.5'x20' Top Hat Trailers Deckover/Equipment
Our Price! $150
Black - Deckover/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 244342
VIN: 4R7BF2028RN244342
Condition: New
Year: 2025
Manufacturer: Top Hat Trailers
Model: ETH8520RENT
Length: 20'
Width: 8.5'
Height:
GVWR (lbs): 14,000
Weight (lbs): 3,475
Payload (lbs): 10,525
Features:

Other Recommendations

// Function to set a cookie on the Message Box function setCookie(name, value, days) { const date = new Date(); date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000)); document.cookie = `${name}=${value}; expires=${date.toUTCString()}; path=/`; } // Function to get a cookie function getCookie(name) { const cookies = document.cookie.split('; '); for (let cookie of cookies) { const [key, value] = cookie.split('='); if (key === name) return value; } return null; } // Check if the cookie exists and hide the message box if it does document.addEventListener('DOMContentLoaded', () => { const messageBox = document.querySelector('.message-box'); const closeButton = document.querySelector('.mb-close'); if (getCookie('hideMessageBox')) { messageBox.style.display = 'none'; } // Set a cookie when the close button is clicked and hide the message box closeButton.addEventListener('click', () => { setCookie('hideMessageBox', 'true', 7); // Cookie expires in 7 days messageBox.style.display = 'none'; }); });