// JavaScript Document
function swapBG (target, newColor) {
	//document.getElementById('th200').style.backgroundColor='#b5d5d7';
	document.getElementById(target).style.backgroundColor=newColor;
}