function NavOver(td) {
	td.style.cursor = 'hand';
	td.style.backgroundColor = '#66FF99';
}

function NavOut(td) {
	td.style.cursor = 'default';
	td.style.backgroundColor = '#C0C0C0';
}

function NavClick(nr) {
	window.location = document.getElementById("A" + nr);
}
