function hofiTDaktiv(id) {
	document.getElementById(id).style.background = '#F1EAD0';
	document.getElementById(id).style.cursor = 'hand';
}

function hofiTDnaktiv(id) {
	document.getElementById(id).style.background = '#FFFFFF';
	document.getElementById(id).style.cursor = '';
}

