function emblem(location) {
	for (var i=1; i<=14; i++) {
		if (location == "location_on_" + i) {
			document.getElementById("emblem" + i).style.visibility="visible";
		}
		if (location == "location_off_" + i) {
			document.getElementById("emblem" + i).style.visibility="hidden";
		}
	}
}

function leftmap(link) {
	for (var j=0; j<=15; j++) {
		if (link == "locations_" + j) {
			document.getElementById("navbullet").style.visibility = "visible";
			if (j<=6) {
				document.getElementById("navbullet").style.marginTop = 200 + (j*35) + "px";
				document.getElementById("navbullet").style.marginLeft = 42 + "px";
			}
			if (j>6) {
				document.getElementById("navbullet").style.marginTop = 444 + ((j-7)*34) + "px";
				document.getElementById("navbullet").style.marginLeft = 20 + "px";
			}
		}
		else if (link == "locations_off_" + j) {
			document.getElementById("navbullet").style.visibility = "hidden";
		}
	}
}
