function lightOn(elem) { 
oldId = elem;
oldBgColor = document.getElementById(elem).style.background;
document.getElementById(elem).style.background = '#eeeeee';}
function lightOff() {  
document.getElementById(oldId).style.background = oldBgColor;}
function lightOnC(elem) { 
oldId = elem;
oldBgColor = document.getElementById(elem).style.background;
document.getElementById(elem).style.background = '#fefefe';}
function lightOffC() {  
document.getElementById(oldId).style.background = oldBgColor;}