/* title: category JS
 */
window.onload = promoinit;

function promoinit() {
    if (i = document.getElementById('catPromoLarge')) {
        i.onclick = function(y) { window.location = promoUrl1; };
        i.onmouseover = function(y) { 
            if (i = document.getElementById('catPromoLarge')) { i.className = 'largePromoActive'; }; 
            if (k = document.getElementById('catPromoLargeInnerWrap')) { k.className = 'largePromoWrapActive'; }; 
            if (j = document.getElementById('catPromoAnchor')) { j.style.textDecoration = 'underline'; j.style.color = '#993300' }; 
        };
        i.onmouseout = function (y) { 
            if (i = document.getElementById('catPromoLarge')) { i.className = 'largePromo'; }; 
            if (k = document.getElementById('catPromoLargeInnerWrap')) { k.className = 'largePromoWrap'; }; 
            if (j = document.getElementById('catPromoAnchor')) { j.style.textDecoration = 'none'; j.style.color = 'rgb(0,41,145)' }; 
        };
    }
}
