<!--
function Slow2Hide(button) {
document.getElementById(button).style.visibility="hidden";
}

function display(subnav,button,onoff) {
if (subnav) {
if (onoff=="on") {
document.getElementById(button).src="/img/nav/"+button+"2.gif";
document.getElementById(subnav).style.visibility="visible";
document.getElementById(subnav).style.Zindex="99";
subnavDelay=clearTimeout(subnavDelay);
} else {
subnavDelay=setTimeout(function () {
var ch=document.getElementById('nav_wrapper').getElementsByTagName("img");
for (var i = 0; i<ch.length; i++) { var imgId=ch[i].getAttribute('id'); document.getElementById(imgId).src="/img/nav/"+imgId+"1.gif"; }
for (var i = 1; i<=10; i++) { document.getElementById('menu'+i).style.visibility="hidden"; document.getElementById(subnav).style.Zindex="95"; }

}, 500);
}
} else {
if (onoff=="on") {
document.getElementById(button).src="/img/nav/"+button+"2.gif";
} else {
document.getElementById(button).src="/img/nav/"+button+"1.gif";
}

} // end if (subnav)
} // end function




function getElementsByClassName(strClassName, obj) {
if ( obj.className == strClassName ) { aryClassElements[aryClassElements.length] = obj; }
for ( var i = 0; i < obj.childNodes.length; i++ ) { getElementsByClassName( strClassName, obj.childNodes[i] ); }
}

//-->
