// navigation.js
var visibleObj = "none";

function loadMenu(obj1, obj2) {
	document.getElementById(obj1).style.background = "#11297B";
	document.getElementById(obj1).style.borderBottom = "0px";
	var name = "href_" + obj1.substring(4);
	document.getElementById(name).style.color = "#ffffff";
	
	if(visibleObj != "none") {
		document.getElementById(visibleObj).style.visibility="hidden";
	}
	document.getElementById(obj2).style.visibility="visible";
	document.getElementById('subNavTable').style.background="#11297B";
	document.getElementById('subNavTable').style.color="#ffffff";
	visibleObj = obj2;
}

function bgChg(name, color) {
	obj = document.getElementById(name);
	obj.style.background = color;
}

function chgColor(name, color) {
	obj = document.getElementById(name);
	obj.style.color = color;
}