
var aPages = new Array( 'main', 'life', 'speeches', 'norway', 'photos', 'comments', 'death' );
var aUrls = new Array( 'index.html', 'life.html', 'speeches.html', 'norway.html', 'photos.html', 'comments.html', 'death.html' );

var fTopDrawn = false;

function drawMenu()
{
	document.write( '<table width="70%" align=center>' );
	document.write( '<tr>' );
	var i;
	for( i = 0; i < aPages.length; i++ )
	{
		document.write( '<td align=center>' );
		if( curPage == aPages[i] )
		{
			document.write( aPages[i] );
		}
		else
		{
			document.write( '<a href="' + aUrls[i] + '">' + aPages[i] + '</a>' );
		}
	}
	document.write( '</table>' );

	if( fTopDrawn )
	{
		document.write( "<div style='font-size: 9pt; text-align: center; margin-top: 20px;'>maintained by <a href='http://denniscronin.net'>dennis cronin</a> and <a href='http://keithcronin.com'>keith cronin</a></div>" );
	}
	fTopDrawn = true;
}

