4JJ1 Performance Intake Valves
.crc-diamond{display:block;width:100%;max-width:380px;margin:14px auto;background:#11100E !important;color:#ffffff !important;border:1px solid rgba(255,255,255,0.55) !important;tra nsform:skewX(-14deg);padding:12px 22px;font-family:Oswald,var(--font-heading-family,sans-serif);font-weight:600;font-size:13px;letter-spacing:3px;text-transform:uppercase;cursor:pointer;transition:all .3s ease;box-shadow:0 3px 10px rgba(0,0,0,0.3);text-align:center;text-decoration:none !important;box-sizing:border-box;}a.crc-diamond{display:block;color:#ffffff !important;}.crc-diamond span{display:inline-block;transform:skewX(14deg);color:#ffffff !important;transition:color .3s ease;}.crc-diamond:hover{background:linear-gradient(135deg,#9F8561 0%,#7E6647 50%,#9F8561 100%) !important;border-color:#9F8561 !important;box-shadow:0 0 16px rgba(159,133,97,0.5);}.crc-diamond:hover span{color:#1A1814 !important;}.crc-diamond[disabled]{opacity:.4;cursor:not-allowed;}.crc-diamond[disabled]:hover{background:#11100E !important;border-color:rgba(255,255,255,0.55) !important;box-shadow:0 3px 10px rgba(0,0,0,0.3);}.crc-diamond[disabled]:hover span{color:#ffffff !important;}.crc-diamond.crc-added{background:#10b981 !important;border-color:#10b981 !important;cursor:not-allowed;}.crc-diamond.crc-added span,.crc-diamond.crc-added:hover span{color:#ffffff !important;}.crc-diamond.crc-added:hover{background:#10b981 !important;border-color:#10b981 !important;}.crc-badge-row{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 14px;margin:18px 0 26px;}.crc-badge-d{display:inline-block;transform:skewX(-14deg);border:1px solid rgba(255,255,255,0.5);padding:5px 14px;font-family:Oswald,var(--font-heading-family,sans-serif);font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:#F5F1E8 !important;background:transparent;white-space:nowrap;}.crc-badge-d>span{display:inline-block;transform:skewX(14deg);color:inherit !important;}.crc-badge-d--accent{border-color:#9F8561;color:#9F8561 !important;box-shadow:0 0 10px rgba(159,133,97,0.25);}.crc-badge-d--flex{border-color:#e91e63;color:#e91e63 !important;box-shadow:0 0 10px rgba(233,30,99,0.25);}.crc-badge-d--mcr{border-color:#a855f7;color:#a855f7 !important;box-shadow:0 0 10px rgba(168,85,247,0.25);}.crc-cta-row{margin:36px 0 44px;}.product-description hr{border:none;border-top:1px solid #3A332A;margin:28px 0;}.product-description details summary{font-family:Oswald,var(--font-heading-family,sans-serif);letter-spacing:1.2px;text-transform:uppercase;font-size:14px;}@keyframes slideIn{from{transform:translateX(400px);opacity:0;}to{transform:translateX(0);opacity:1;}}@keyframes slideOut{from{transform:translateX(0);opacity:1;}to{transform:translateX(400px);opacity:0;}} 4JJ1 Performance Intake Valves 21-4N Stainless | Swirl Polished | Suits 4JJ1-TC & TCX DPP - Made in Taiwan 21-4N Stainless Forgings Swirl-Polished Undersides Suits 4JJ1-TC & TCX Afterpay, Humm, Klarna, Zip Free Express Shipping AU Performance intake valves for the Isuzu 4JJ1, built for the heat, stress and corrosive chamber conditions of a high-output diesel. If the head is off a worked D-MAX or Colorado, these go back in instead of tired factory valves. Construction One-piece forged 21-4N stainless steel inlet valve bodies (non-magnetic) Induction-hardened 4Cr9Si2 stem tips, friction welded Fully nitride hardened bodies Fully machined heads with swirl-polished underside radii to the valve face for better airflow and chamber swirl 30° back-cut up to the valve face Fitment 4JJ1-TC and 4JJ1-TCX Rodeo, Colorado and D-MAX to 05/2014 D-MAX 06/2014 to 08/2020 MU-X 12/2013 to 08/2020 N Series 10/2007 on Doing the whole head? Pair with the 4JJ1 Performance Exhaust Valves and 4JJ1 Valve Stem Seals. Shipping & Payment Free Express Shipping Australia-Wide Buy Now, Pay Later: Afterpay, Humm, Klarna & Zip Frequently Asked Questions Q: Is this the intake or the exhaust set? A: Intake. The exhaust set is a separate listing and uses Stellite-welded faces for the higher heat load on that side. Q: Do they need machining? A: They suit the 4JJ1 head, but a proper seat cut and clearance check by your machinist is part of any valve job. ✓ Added to cart! document.addEventListener('DOMContentLoaded', function() { const notification = document.getElementById('cart-notification'); const notificationText = document.getElementById('cart-notification-text'); function showNotification(msg) { notificationText.innerHTML = msg; notification.style.display = 'block'; notification.style.animation = 'slideIn 0.3s ease'; setTimeout(() => { notification.style.animation = 'slideOut 0.3s ease'; setTimeout(() => notification.style.display = 'none', 300); }, 3000); } function updateCartCount() { fetch('/cart.js').then(r => r.json()).then(cart => { const n = cart.item_count; ['.cart-count','#CartCount','[data-cart-count]','.cart-link__bubble','.cart__item-count','#cart-count','.header__cart-count','.cart-count-bubble','[data-header-cart-count]','.site-header__cart-count','#cart-icon-bubble'].forEach(sel => { document.querySelectorAll(sel).forEach(el => { el.textContent = n; el.innerText = n; el.setAttribute('data-cart-count', n); if (n > 0) { el.style.display = ''; el.classList.remove('hide','hidden'); } }); }); document.documentElement.dispatchEvent(new CustomEvent('cart:updated', { detail: { cart } })); if (window.theme && window.theme.cart && window.theme.cart.getCart) window.theme.cart.getCart(); if (typeof window.cartCount !== 'undefined') window.cartCount = n; window.dispatchEvent(new Event('cartchange')); }).catch(() => {}); } function addToCart(variantId, onSuccess, onError) { fetch('/cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ items: [{ id: variantId, quantity: 1 }] }) }).then(r => r.json()).then(onSuccess).catch(onError); } const mainAtc = document.getElementById('main-add-to-cart'); const mainAtcLabel = mainAtc.querySelector('span'); mainAtc.addEventListener('click', function() { if (this.classList.contains('crc-added')) return; const form = document.querySelector('form[action*="/cart/add"]'); if (!form) return; const variantId = new FormData(form).get('id'); mainAtcLabel.innerHTML = 'Adding...'; this.style.opacity = '0.6'; addToCart(variantId, () => { this.classList.add('crc-added'); mainAtcLabel.innerHTML = '\u2713 Added to Cart'; this.style.opacity = '1'; showNotification('\u2713 4JJ1 Performance Intake Valves added to cart!'); updateCartCount(); }, () => { mainAtcLabel.innerHTML = 'Add to Cart'; this.style.opacity = '1'; }); }); const mainBuy = document.getElementById('main-checkout'); const mainBuyLabel = mainBuy.querySelector('span'); mainBuy.addEventListener('click', function() { const form = document.querySelector('form[action*="/cart/add"]'); if (!form) return; const variantId = new FormData(form).get('id'); mainBuyLabel.innerHTML = 'Processing...'; this.style.opacity = '0.6'; this.disabled = true; addToCart(variantId, () => { window.location.href = '/checkout'; }, () => { mainBuyLabel.innerHTML = 'Buy Now'; this.style.opacity = '1'; this.disabled = false; alert('Error adding to cart. Please try again.'); }); }); }); Add to CartBuy Now Intake Valves for a Worked 4JJ1 DPP performance intake valves for the Isuzu 4JJ1-TC and TCX. Forged 21-4N stainless, swirl polished, nitride hardened. Free express shipping Australia-wide. Disclaimer: Common Rail Cowboys is not affiliated with Isuzu Motors, General Motors or Holden. Engine components require professional machining and assembly.
More you might like
Related
4JJ1 Performance Exhaust Valves
Related
2ZR High Performance Intake Valves
Related
Manley Performance 12330-8 Race Flo Intake Valves for Chrysl
Related