
function tdmouseover(el) {
	el.style.color = "#ffffff"
	el.style.backgroundColor = "#182752"
	el.style.cursor = "pointer"
}
function tdmouseout(el) {
	el.style.color = "#6E6868"
	el.style.backgroundColor = "white"
}