function cellGlow( tbCell, mOver) {	if ( mOver ) {				tbCell.style.backgroundColor = '#369';	} else {				tbCell.style.backgroundColor = '#036';	}}function cellGlowInst( tbCell, mOver) {	if ( mOver ) {				tbCell.style.backgroundColor = '#47a';	} else {				tbCell.style.backgroundColor = '#147';	}}

function shopCellGlow( tbCell, mOver) {
	if ( mOver ) {
				tbCell.style.backgroundColor = '#cccccc';
	} else {
				tbCell.style.backgroundColor = '#eeeeee';
	}
}function shopCellClick(tbCell, url) { shopCellGlow(tbCell, 0);	window.location.href = url;}
function cellClick(tbCell, url) { cellGlowInst(tbCell, 0);	window.location.href = url;}