	<!--


	/*  This script generates the left side navigation bar that is 150 px wide and a spacer column to the right of it that is 40 px wide.  It goes on all the web pages.  This script needs the rollover file called bulletChange.js so that the rollover button will change.

	*/
	document.writeln("<td><img src='../images/spacer.gif' width='40' height='150' border='0'><br></td>");

	document.writeln("<td valign='top' bgcolor='#ffffff' class='sidenav'>");

	document.writeln("<img src='../images/spacer.gif' width='120' height='50' border='0'><br>");
	document.writeln("<font color='#003333' face='bookman old style' size='4'>Projects Links</font><br>");
	document.writeln("<font color='#003333' face='bookman old style' size='2'>")

	//  REGION NAVIGATION LINKS

	var navNumber = new Array("Flume",

							"EYH",

							"Building Big",

							"Science Fair",

							"Girl Scouts",
							
							"",

							"Photo Album",

							"Contact Us");

	var linkList = new Array ("flume/flume.html",

						"eyh/eyh.html", 

						"building_big/bb.html",

						"../under_cons.html",

						"../under_cons.html",
							
						"",

						"../photoalbum/photoalbum.html",
						
						"../contact_form.html");

	for (i=0; i<navNumber.length; i++) {

		document.writeln("<a href='"      +linkList[i]+      "' >");

		document.writeln(navNumber[i]);

		document.writeln("</a><br>");

	}

	document.writeln("</td>");

//	document.write("<td bgcolor='#ffffff' valign='top'><img src='../images/spacer.gif' width='40' height=" + spacerH + " border='0'></td>");

	document.write("</font>");
	//-->

