// JavaScript Document

activeNav = "";

function swapClassOn(which){
	document.getElementById(which).className="nav_button_active";
}
function swapClassOff(which){
	document.getElementById(which).className="nav_button";
}