function is_on(num){
	var elem = document.getElementById("elem"+num);
	elem.style.backgroundColor='#4eafb5';
}

function is_off(num){
	var elem = document.getElementById("elem"+num);
	elem.style.backgroundColor = "#ffffff";
}
