// JavaScript Document (this is the rollover.js file mentioned above. Create a seperate JS file with this text.

function navOn(id) {
	if (document.getElementById("img_" + id)) document.getElementById("img_" + id).src = "http://www.stcloudout.org/images/nav_" + id + "_o.png";
	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://www.stcloudout.org/images/nav_" + id + ".png";
	if (document.getElementById("list_" + id)) document.getElementById("list_" + id).style.visibility = "hidden";
}
