X

8.5'x20' Top Hat Trailers Deckover/Equipment 8.5x20 DO

2024 Top Hat 8.5x20 Deckover Equipement Trailer

* ST 235/80R/16 LRE Tires on 8-Hole on 14K
* 7000# Dexter EZ-Lube 1/2 Cambered Elec Brake Axles 14K
* Coupler: 2 5/16" Forged Adjustable 5/Position
* Jack: 7000# Drop Leg on 10K. 10000# Drop Leg on 14-16K.
* Floor: 2" Treated Pine
* Break Away Unit w/Charger
* Spare Rack
* Color: Black
* 6FT Slide-N-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" on 14K & 16K
8.5'x20' Top Hat Trailers Deckover/Equipment 8.5x20 DO
Price: $8,300 On Sale! $6,999
Black - Deckover/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 244109
VIN: 4R7BF2022RN244109
Condition: New
Year: 2024
Manufacturer: Top Hat Trailers
Model: 8.5x20 DO
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'; }); });