// JavaScript Document

function switchBox(who) {
	document.getElementById("swBox1").style.display = "none";
	document.getElementById("swBox2").style.display = "none";
	document.getElementById("swBox3").style.display = "none";
	document.getElementById("swBox4").style.display = "none";
	document.getElementById("swBox5").style.display = "none";
	document.getElementById("swBoxTab1").setAttribute("class", "swtchBoxTabOff");
	document.getElementById("swBoxTab2").setAttribute("class", "swtchBoxTabOff");
	document.getElementById("swBoxTab3").setAttribute("class", "swtchBoxTabOff");
	document.getElementById("swBoxTab4").setAttribute("class", "swtchBoxTabOff");
	document.getElementById("swBoxTab5").setAttribute("class", "swtchBoxTabOff");
	
	document.getElementById("swBoxTab1Txt").setAttribute("class", "swtchBoxTabOffTxt");
	document.getElementById("swBoxTab2Txt").setAttribute("class", "swtchBoxTabOffTxt");
	document.getElementById("swBoxTab3Txt").setAttribute("class", "swtchBoxTabOffTxt");
	document.getElementById("swBoxTab4Txt").setAttribute("class", "swtchBoxTabOffTxt");
	document.getElementById("swBoxTab5Txt").setAttribute("class", "swtchBoxTabOffTxt");

	document.getElementById("swBox" + who).style.display = "block";
	document.getElementById("swBoxTab" + who).setAttribute("class", "swtchBoxTabOn");
		document.getElementById("swBoxTab" + who + "Txt").setAttribute("class", "swtchBoxTabOnTxt");
	}
