function changeBgColor(elementId, color){
	document.getElementById(elementId).style.background = color;
}

function changeColor(elementId, color){
	document.getElementById(elementId).style.color = color;
}
