﻿function changeMenuStyle(cell, cellColor, textColor){
	cell.style.backgroundColor = cellColor;
	cell.childNodes[1].style.color = textColor;
}

