var currentTab;
function switchTab(newTab) {
	if (currentTab != newTab) {
		Element.hide(currentTab);
		Element.show(newTab);
		$(currentTab + "Link").style.fontWeight = "normal" 
		$(newTab + "Link").style.fontWeight = "bold" 
		currentTab = newTab;
	}
}
