function makeActive(id) { 
	var e = document.getElementById(id);
	e.style.backgroundImage = "url(images/navBackActive.png)";
}

function makeInactive(id) {
	var e = document.getElementById(id);
	e.style.backgroundImage = "url(images/navBack.png)";
}

function makeDropActive(id) {
	var e = document.getElementById(id);
	e.style.backgroundColor = "#db6c0f";
}

function makeDropInactive(id) {
	var e = document.getElementById(id);
	e.style.backgroundColor = "#3b6670";
}

function dropMenu(id) {
	var e = document.getElementById(id);
	e.style.display = "block";
}

function removeDrop(id) {
	var e = document.getElementById(id);
	e.style.display = "none";
}
