

/* DROPDOWN FUNCTIONALITY */

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;



/* MENU ARRAY */
var n = new Array();

n[0] = new Array("SAM","About Me","Contact Information","Current Schedule");
n[1] = new Array("RESEARCH","Berkeley EECS","SOS Group","KodLab","Publications","Presentations");
n[2] = new Array("PERSONAL","Photos","Vinyl");
n[3] = new Array("MISC","Grad School","Watt Governor","Design");



/* HTML WRITEUP */
document.write(" ");
document.write("<!-- NAVIGATION -->");
document.write(" ");
document.write("<div style='margin-left: auto; margin-right: auto; width: 600px;'>");

for (var i = 0; i < n.length; i++) {
	document.write("<ul><li><a href='" + n[i][0].toLowerCase() + ".html'>" + n[i][0] + "</a><ul>");

	for (var j = 1; j < n[i].length; j++) {

		document.write("<li><a href='" + n[i][0].toLowerCase() + ".html#" + n[i][j].toLowerCase() + "'>" + n[i][j] + "</a></li>");
	}

	document.write("</ul></li></ul>");
}

document.write("</div>");
document.write(" ");
document.write("<!-- /NAVIGATION -->");
document.write(" ");
