// JavaScript Document
function light_on(obj,color) {
	obj.style.backgroundColor=color;
	}

function light_off(obj) {
	obj.style.backgroundColor="transparent";
	}