function colorLine(dividerNumber, overOrOut) {
	if (overOrOut == "over") {
		bgColor = "#05391d";
	} else {
		bgColor = "#ffffff";
	}
	document.getElementById('navigationdivider' + dividerNumber).style.backgroundColor = bgColor;
}
