// JavaScript Document
function nav(element) {
	var state = element.style.backgroundColor;
	if (state != "") {
		element.style.backgroundColor = "";
	} else {
		element.style.backgroundColor = "#004d40";
	}
}
