function shownav(id) {
	document.getElementById(id).style.visibility = 'visible';
}

function closenav(id) {
	document.getElementById(id).style.visibility = 'hidden';
}

