if (DOM) {
	var iSubMenu=-1; var cSubMenu; 
	tSubMenu = new Array(); 
	}

function mSubMenu (Elemento) {
if (!DOM) return;
var Index;
if (Elemento.parentNode.nodeName.toUpperCase()=='DT') Index=Elemento.parentNode.id.charAt(4);
else Index=Elemento.parentNode.parentNode.parentNode.id.charAt(7);
clearTimeout(tSubMenu[Index]);
for (var i=0; i<10; i++) {
	if (document.getElementById('SubMenu'+i)) document.getElementById('SubMenu'+i).style.display='none';
	}
document.getElementById('SubMenu'+Index).style.display='block';
}

function dSubMenu (Elemento) {
if (!DOM) return;
var Index;
if (Elemento.parentNode.nodeName.toUpperCase()=='DT') Index=Elemento.parentNode.id.charAt(4);
else Index=Elemento.parentNode.parentNode.parentNode.id.charAt(7);
tSubMenu[Index] = setTimeout('oSubMenu('+Index+')', 500);
}

function oSubMenu (Index) {
document.getElementById('SubMenu'+Index).style.display='none';
}

