// main.js
function faerben(farbe,spalte) {
	if (document.getElementById) {
		document.getElementById(spalte).style.backgroundColor = farbe;
	}
}