function switchSection(id)
	{
		hideSectionOthers()
		if (id == 00) {document.getElementById("section-arch").style.display = "block"}
		else if (id == 01) {document.getElementById("section-comm").style.display = "block"}
		else if (id == 02) {document.getElementById("section-trade").style.display = "block"}
		else if (id == 03) {document.getElementById("section-investor").style.display = "block"}
		else if (id == 04) {document.getElementById("section-medsci").style.display = "block"}
		else if (id == 05) {document.getElementById("section-marketing").style.display = "block"}
	}
	
function hideSectionOthers()
	{
		document.getElementById("section-default").style.display = "none"
		document.getElementById("section-arch").style.display = "none"
		document.getElementById("section-comm").style.display = "none"
		document.getElementById("section-trade").style.display = "none"
		document.getElementById("section-investor").style.display = "none"
		document.getElementById("section-medsci").style.display = "none"
		document.getElementById("section-marketing").style.display = "none"
	}
	
function showDefault()
	{
		hideSectionOthers()
		document.getElementById("section-default").style.display = "block"
	}	