// JavaScript Document

function navOn(id) {
	if (document.getElementById("img_" + id)) document.getElementById("img_" + id).src = "http://support.bankerssystems.com/images/nav_" + id + "_o.gif";
	if (document.getElementById("list_" + id)) document.getElementById("list_" + id).style.visibility = "visible";
}

function navOff(id) {
	if (document.getElementById("img_" + id)) document.getElementById("img_" + id).src = "http://support.bankerssystems.com/images/nav_" + id + ".gif";
	if (document.getElementById("list_" + id)) document.getElementById("list_" + id).style.visibility = "hidden";
}
