<!-- Header script>
//Creates a side navigation bar for all pages except entry page - due to folder
//structure

// Begin main table -- One row, two columns (buttons, content)
document.writeln("<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=\"650\" VALIGN=Top>");

// First column is for the navigation menu
		document.writeln("<TD Valign=Top HALIGN=RIGHT WIDTH=\"100\">");

// The following creates the navigation menu (side menu)
document.writeln("<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=5>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"index.html\"> ");
			document.writeln("Home</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"cv.html\"> ");
			document.writeln("CV</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"research.html\"> ");
			document.writeln("Research</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"courses.html\"> ");
			document.writeln("Courses</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"schedule.html\"> ");
			document.writeln("Schedule</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");

	document.writeln("<TR>");
		document.writeln("<TD VALIGN=\"TOP\">");
			document.writeln("<A HREF=\"links.html\"> ");
			document.writeln("Links</A></TD>");
		document.writeln("</TD>");
	document.writeln("</TR>");


	document.writeln("</TABLE>" );

	//wrapping things up

	document.writeln("</TD>");
	document.writeln("<TD VALIGN=TOP HALIGN=LEFT>");

// end of script -->



