tabs = ["person", "section", "research"];
url = document.URL;
current = url.split("#")[1];
if (!current || typeof(current) == 'undefined') {
	current = "person";
}

function selecttab() {
	tab = document.getElementById(current + "tab");
	search = document.getElementById(current + "search");
	if(tab) {
		for (t = 0; t < tabs.length; t++) {
			tt = document.getElementById(tabs[t] + "tab");
			ts = document.getElementById(tabs[t] + "search");
			tt.className = "";
			ts.style.display = "None";
		}
		tab.className = "active";
		search.style.display = "Block";
	}
}
