function tabSwitch(tabId) {
	
	var tab = document.getElementById(tabId);
	var li_node = tab.parentNode;
	tab.style.display = 'block';
	li_node.style.position = 'relative';
}
function nd(tabId) {
	var tab = document.getElementById(tabId);
	tab.style.display = 'none';
	var li_node = tab.parentNode;
	li_node.style.position = 'static';
	
	return true;
}