execOnLoad = function() {
	pd_List();
}

window.onload=execOnLoad;

function pd_List() {
  if (document.all&&document.getElementById && !window.opera) {
    navOya = document.getElementById("navi");
    if (navOya) {
      for (i=0; i<navOya.childNodes.length; i++) {
   	    kodomo1 = navOya.childNodes[i];
       	if (kodomo1.nodeName=="UL") {
	      for (j=0; j<kodomo1.childNodes.length; j++) {
    	    kodomo2 = kodomo1.childNodes[j];
        	if (kodomo2.nodeName=="LI") {
	          kodomo2.onmouseover=function() {
    	        this.className+=" over";
        	  }
	          kodomo2.onmouseout=function() {
    	        this.className=this.className.replace(" over", "");
        	  }
    } } } } }
} }
