// cell color swap
var lastObj;
function m_over(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#C3CC83'; }
}
function m_out(obj) { 
	if (obj != lastObj) { obj.style.backgroundColor = ''; }
}
function m_down(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#EEEEEE'; }
}
function m_up(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#ADB573'; }
}

var lastObj;
function lm_over(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#A99696'; }
}
function lm_out(obj) { 
	if (obj != lastObj) { obj.style.backgroundColor = ''; }
}
function lm_down(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#EEEEEE'; }
}
function lm_up(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#A99696'; }
}
 