// Controls the Main Navigation
function hideDiv(id) {
	document.getElementById('' + id).style.visibility = 'hidden';
}

function showDiv(id) {
	document.getElementById('' + id).style.visibility = 'visible';
} 



