function changeBG(id, clName) {
	var thisID = document.getElementById(id);
	thisID.className = clName;
}
