X

7'x14' Top Hat Trailers Utility 14x83" MRAX

2024 Top Hat 7x14 Landscape/ Utility Trailer

Coupler: **UPGRADED** Adjustable Coupler

Jack: **UPGRADE** 7K Drop Leg Jack

Fenders: 9x32 Rolled

Floor: 2" Treated Pine

Stake Pockets

48" Tall Upright Tailgate

Spare Rack

LED Lights

Colors: Refer to Chart

Axle: **UPGRADE** 5200 Braked

Tires: **UPGRADE** ST225/75R15

#### Frame Structure

Frame: **UPGRADE** 4x3x3/16

Toprail: 3x2x3/16

Crossmembers: 3x2x3/16

Tongue: 3" Channel Thru 10'

Tongue: 4" Channel on 12'-14'

Uprights: 2x2x3/16

Fender Brace/Step

24" High Sides Lined w/Expanded Metal

####
7'x14' Top Hat Trailers Utility 14x83" MRAX
Price: $4,600 On Sale! $3,799
Black - Utility
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 238312
VIN: 4R7BU1410RN238312
Condition: New
Year: 2024
Manufacturer: Top Hat Trailers
Model: 14x83" MRAX
Length: 14'
Width: 7'
Height:
GVWR (lbs): 5,000
Weight (lbs): 1,667
Payload (lbs): 3,333
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'; }); });