    // Function for drop-menu functions in IE (thank you Suckerfish)
    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;

    // Pop-up adjustment stuff
    popWidth = 360;
    popHeight = 300;
    availWidth = self.screen.availWidth;

if (self.innerHeight) // all except Explorer
{
  x = self.innerWidth;
}
else if (document.documentElement && document.documentElement.clientHeight)
     // Explorer 6 Strict Mode
{
  x = document.documentElement.clientWidth;
}
else if (document.body) // other Explorers
{
  x = document.body.clientWidth;
}

    if(self.screenTop) {
      winTop = self.screenTop;
      winLeft = self.screenLeft;
    } else {
      winTop = self.screenY;
      winLeft = self.screenX;
    }
    popTop = winTop + 50;
    popLeft = winLeft + (x / 2) - (popWidth / 2);
    function popWin()
    {
      window.open("./video/","videoShow","top="+popTop+",left="+popLeft+",screenX="+popTop+",screenY="+popLeft+",width="+popWidth+",height="+popHeight);
    }

