// JavaScript Document

startList = function() {

if (document.getElementById("navMenu") != null)
{

if (document.all&&document.getElementById) {
navMenuRoot = document.getElementById("navMenu");
for (i=0; i<navMenuRoot.childNodes.length; i++) {
node = navMenuRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }

}
}
window.onload=startList;

function toggleNavGuideTop() {
	
	var guideTable = document.getElementById('navGuide');
	var guideArrowImg = document.getElementById('guideArrow');
	var guideSfondoTit = document.getElementById('titOn');
	
	if (guideTable.style.display == 'none') {
		guideTable.style.display = '';
		guideArrowImg.src = '/mdct/img/dxBar/infoProtOnNew.gif';
		guideSfondoTit.style.background='#003D6E';
	}else{
		guideTable.style.display = 'none';
		guideArrowImg.src = '/mdct/img/dxBar/infoProtOffNew.gif';
		guideSfondoTit.style.background='#EBEBEB';
	}
}
