	function funChangeMenu(vObj, vColor){
		for(i = 1; i <= 6; i++){
			document.getElementById("vButton" + i).style.backgroundColor = "#1875B5";
			document.getElementById("vButtonBtm1" + i).style.backgroundColor = "#004488";
			document.getElementById("vButtonBtm2" + i).style.backgroundColor = "#6699CC";
			document.getElementById("vLinks" + i).style.display = "none";
		}
			document.getElementById("vButton" + vObj).style.backgroundColor = "#3399CC";
			document.getElementById("vButtonBtm1" + vObj).style.backgroundColor = "#3399CC";
			document.getElementById("vButtonBtm2" + vObj).style.backgroundColor = "#3399CC";
			document.getElementById("vLinks" + vObj).style.backgroundColor = "#3399CC";
			document.getElementById("vLinks" + vObj).style.display = "block";
			document.getElementById("vLinks" + vObj).style.height = "30px";
	}

