// JScript File

// JScript File

//Add/remove tabbed background to main element on subnav hover
function bgHover(y) {
    var x = 'url(/images/bg_szmenu_hover.gif)';
    document.getElementById(y).firstChild.style.backgroundImage = x;
    document.getElementById(y).firstChild.style.backgroundRepeat = 'no-repeat';
    document.getElementById(y).firstChild.style.backgroundPosition = 'bottom center';
    document.getElementById(y).firstChild.style.color = '#15617D';
}

function bgNonHover(y) {
    var x = 'url(/images/bg_szmenu_hover.gif)';
   document.getElementById(y).firstChild.style.backgroundImage = 'none';
   document.getElementById(y).firstChild.style.backgroundRepeat = 'no-repeat';
   document.getElementById(y).firstChild.style.color = '#FFF';
}


