function onColor(src) {
	src.style.backgroundColor = '#E6E5E5';
	src.style.cursor = 'hand';
}

function offColor(src) {
	src.style.backgroundColor = '#F7F7F7';
}

function cellClick(src) {
	src.children.tags('A')[0].click();
}