function change(tabID) {
	if (document.getElementById && document.getElementById(tabID) != null) {
		node = document.getElementById(tabID).style.backgroundColor='#000000';
	} else if (document.layers && document.layers[tabID] != null) {
		document.layers[tabID].backgroundColor = '#000000';
	} else if (document.all) {
		document.all[tabID].style.backgroundColor = '#000000';
	}
}

function revert(tabID) {
	if (document.getElementById && document.getElementById(tabID) != null) {
		node = document.getElementById(tabID).style.backgroundColor='#666666';
	} else if (document.layers && document.layers[tabID] != null) {
		document.layers[tabID].backgroundColor = '#666666';
	} else if (document.all) {
		document.all[tabID].style.backgroundColor = '#666666';
	}
}