	<!--


	/*  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'>More About Us...</font><br>");
	document.writeln("<font color='#003333' face='bookman old style' size='2'>")

	//  REGION NAVIGATION LINKS

	var navNumber = new Array("Who is SWE?",

							"HSU SWE History",

							"Officers' Bios",

							"Past SWE Officers",

							"Accomplishments",

							"How to Join",

							"",

							"Photo Album",

							"Contact Us");

	var linkList = new Array ("index.html",

						"history.html", 

						"officer_bios/current_officers.html",

						"../under_cons.html",

						"../under_cons.html",

						"../membership/join.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>");
	//-->

