function highlightMe(cellId) {
	var cell = document.getElementById(cellId);
	cell.style.backgroundColor = "#dedede";
	for (var i = 0; i < cell.childNodes.length; i++) {
		if (cell.childNodes[i].className && cell.childNodes[i].className.split("newsListTitle").length > 1) {
			cell.childNodes[i].style.color = "maroon";
		}
	}
}

function normalMe(cellId) {
	var cell = document.getElementById(cellId);
	cell.style.backgroundColor = "#efefef";
	for (var i = 0; i < cell.childNodes.length; i++) {
		if (cell.childNodes[i].className && cell.childNodes[i].className.split("newsListTitle").length > 1) {
			cell.childNodes[i].style.color = "#3F4446";
		}
	}
}
