<!--
var script03navURLs  = new Array('20010924.html',
							     '20010925.html',
							     '20010926.html',
							     '20010927.html'
							     );
var script03linkText = new Array('Astronomical Cities',
							     'Serpent Mound',
							     'SunWatch',
							     'Woodhenge'
							     );

function script03Navbar() {
	var script03navStr= '';
	for (var i = 0; i < script03navURLs.length; i++) {
		if (location.href.indexOf(script03navURLs[i]) == -1) { 
			script03navStr += '<A HREF="' + script03navURLs[i] + '">' + script03linkText[i] + '</A><br>';
		}
		else { script03navStr += '<b>' + script03linkText[i] + '</b><br>';
		}
	}
	document.writeln(script03navStr);
	}
// -->
