// JavaScript Document

GenstartList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("gen");
node = navRoot;
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" outside";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" outside", "");
   }
   }
  }
}
window.onload=function(){
 GenstartList();
}