X

8.5'x30' Alcom Deckover/Equipment

2023 Alcom Highcountry 8.5x30 Deckover Equipment Trailer

Easy loading. Strong, lightweight aluminum build. Recessed D-rings and stake pockets to secure your assets.

 FEATURES

All-Aluminum Construction

16" O/C Floor Crossmembers

2"x8" Subframe Tubing

15000# 2-5/16" Adjustable Coupler

(2) 15000# Safety Chains

Dexter Torsion Ride Axles

8K Drop Jack

Extruded Aluminum Decking

(4) 6000# Recessed Swivel D-Rings

HD Stake Pockets (Full Perimeter)

Fixed 2"x2" Front Bumper Rail

Adjustable HD Flip Up Ramps (16"x5')

Beavertail Construction

Recessed LED Marker Lights

Limited Lifetime Warranty

SPECS

Model Number HDO101x26-10K

Deck WxL 101" x 30'

Overall WxL 102" x 34'

Deck Height 36"

Hitch Height 24" - 32" Adjustable

Axle(s) - Qty/Rating 2 - 5200# Braked

Wheels 16" Aluminum

Tires 235/80R16

GVWR 9990#

Curb Weight 2263#

Payload 7727#

Power Connection 7-Way Round
8.5'x30' Alcom Deckover/Equipment
Price: $21,150 On Sale! $13,999
Silver - Deckover/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 024008
VIN: 5WFBU3023PS024008
Condition: New
Year: 2023
Manufacturer: Alcom Inc.
Model:
Length: 30'
Width: 8.5'
Height:
GVWR (lbs): 9,990
Weight (lbs): 2,263
Payload (lbs): 7,727
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'; }); });