/*Cyladian Technology Consulting - Javascript FunctionsLogan Rockmore, webmaster@burgundylogan.comUpdated: 27 April 2006*//* Generic-------------------------------------------------- */function positionNavigation(){		mapLeft = document.getElementById('Map').offsetParent.offsetLeft + 580;	mapTop = document.getElementById('Map').offsetParent.offsetTop + 11;		document.getElementById('navigationLinks').style.left = mapLeft + 'px';	document.getElementById('navigationLinks').style.top = mapTop + 'px';	}function showNavigation(){		document.getElementById('navigationLinks').style.visibility = "visible";	}function hideNavigation(){		document.getElementById('navigationLinks').style.visibility = "hidden";	}
