// JavaScript Document
var z = 5;
<!--
function openAd(id,zindex) {
	z=z+1;
	var ret=String(id);
	var menu_id = ret.substring(3);
	document.getElementById(ret).style.display="block"; 
	document.getElementById(ret).style.zIndex=z; 
	//Set all colors to the HV blue color:
	document.getElementById('menu1').style.color="#01a0d7"; 
	document.getElementById('menu2').style.color="#01a0d7"; 
	document.getElementById('menu3').style.color="#01a0d7"; 
	document.getElementById('menu4').style.color="#01a0d7"; 
	document.getElementById('menu5').style.color="#01a0d7"; 
	//Set the active menu color to the active color (The HV gray color):
	document.getElementById(menu_id).style.color="#6c6b70"; 
}

function closeAd(id) {
	ret=String(id);
	document.getElementById(ret).style.display="none"; 
}
// -->
