document.write('        <table class=sectionmenu>');
document.write('          <tr><td><a href="Port.htm" class=sectionentry>Port Area</a></td></tr>');
document.write('          <tr><td><a href="Breakwater.htm" class=sectionentry>Main Breakwater</a></td></tr>');
document.write('          <tr><td><a href="Moturoa.htm" class=sectionentry>Moturoa Wharf</a></td></tr>');
document.write('          <tr><td><a href="Urea.htm" class=sectionentry>Dry Bulk Storage</a></td></tr>');
document.write('          <tr><td><a href="NewtonKing.htm" class=sectionentry>Tanker Terminal</a></td></tr>');
document.write('          <tr><td><a href="Blyde.htm" class=sectionentry>Blyde Terminal</a></td></tr>');
document.write('          <tr><td><a href="Storage.htm" class=sectionentry>Cold / Dry Storage</a></td></tr>');
document.write('          <tr><td><a href="Plant.htm" class=sectionentry>Plant</a></td></tr>');
document.write('          <tr><td><a href="Other.htm" class=sectionentry>Other Facilities</a></td></tr>');
document.write('        </table>');

var i;
for (i = 0; i<document.links.length; i++)
{
	if ((document.links[i].href == document.URL)
	&& (document.links[i].className == 'sectionentry'))
		document.links[i].className = 'currentsectionentry';
}