// JavaScript Document
function colorOn(e) {
	document.getElementById(e).style.backgroundColor="#e0922f";
}
function colorOff(e) {
	document.getElementById(e).style.backgroundColor="";
}