function row_over(eRow){
	eRow.style.backgroundColor = "#144557";
	eRow.style.cursor = "default";
}

function row_out(eRow){
	eRow.style.backgroundColor = "#2b515f";
	eRow.style.cursor = "auto";
}

function row_over2(eRow){
	eRow.style.backgroundColor = "#f3f3f3";
	eRow.style.cursor = "default";
}

function row_out2(eRow){
	eRow.style.backgroundColor = "#cecece";
	eRow.style.cursor = "auto";
}