function row_over(rowElement) {
	rowElement.style.backgroundColor = "#777777";
}

function row_out(rowElement, color) {
	rowElement.style.backgroundColor = color;
}
