X

8.5'x16' CornPro Deckover/Equipment 16+5 7K

2022 Corn Pro 8.5x16 Deckover Equipment Trailer (8.5x16+5)

102" wide
Name brand radial tires
Cross members on 16" centers
Dexter axles
Electric brakes on both axles
#1 treated pine floor (kiln dried after treatment)
BulldogRegistered 10,000 lb. drop leg jack
Front chain basket
Stake pockets 100% welded on both sides
2" x 3/8" rub rail
8" channel bulkhead with two D-rings
Spring assist ramps
Special silicone filled electric connectors
Breakaway kit with 12-volt battery
Shot blasted before painting
Two front steps
Shot blasted, primed, then painted
8.5'x16' CornPro Deckover/Equipment 16+5 7K
Price: $11,500 On Sale! $6,499
Black - Deckover/Equipment
Location
Edgerton
979 County Hwy A
Edgerton, WI 53534
(608) 770-0999
Get a Quote
Specs
Stock Number: 081804
VIN: 4MJFB2122NE081804
Condition: New
Year: 2022
Manufacturer: CornPro
Model: 16+5 7K
Length: 16'
Width: 8.5'
Height:
GVWR (lbs): 14,000
Weight (lbs): 4,380
Payload (lbs): 9,620
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'; }); });