<!--
window.onload=hdMenu;
var timeout;
function hdMenu(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('hdSubMenu'+i)) {document.getElementById('hdSubMenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
clearTimeout(timeout);
}

function hdSubMenu(id) {
	document.getElementById(id).style.color="#BDB085";
}

function timedMsg(id) {
	timeout = setTimeout("HideMenu(\"" + id + "\")",3000);
}

function HideMenu(id) {
	hdMenu('hdSubMenu0');
	document.getElementById(id).style.color="#4F4D45";
}

function ColorMenu(id) {
	document.getElementById(id).style.color="#4F4D45";
}
//-->
