function renderPageTop(thisPage, pathPrefix)
{
	document.write("<a style=\"text-decoration:none\" href=\"pathdesign.html\" title=\"click to learn more about this graphic\"><div class=\"sitehead\"><span>Watertown Bicycle and Pedestrian Committee</span></div></a>");
	document.write("<div id=\"topmenu\" class=\"topmenu\">");

	var menuLayout = [
		["Home", "index.html"],
                ["Blog", "http://blog.watertownbikeped.org"],
                ["Mission", "mission.html"],
                ["Meetings", "meetingdates10.html"],
		["News", "news.html"],
                ["Rules", "rules.html"],
		["Safe Routes to School", "srs.html"],
		["Path Projects", "maps/branch.html"],
		["Charles River Paths", "crpaths.html"],
		["Bike Parking", "parking.html"],
		["About Us", "aboutus.html"]
	];

	for (var i=0; i < menuLayout.length; ++i)
	{
		if (menuLayout[i][0] != thisPage)
		{
			document.write("<div class=\"menupick\" onclick=\"return goto(\'");
			document.write(pathPrefix);
			document.write(menuLayout[i][1]);
			document.write("');\">");
			document.write(menuLayout[i][0]);
			document.write("</div>\n");
		}
		else
		{
			document.write("<div class=\"nopick\"> ");
			document.write(menuLayout[i][0]);
			document.write("</div>\n");
		}
	}

	document.write("<div class=\"rightmost\"></div>");
	document.write("<div style=\"clear:both\"></div>\n");
	document.write("</div>");
}

function goto(path)
{
	window.location=path;
	return false;
}
