function noticeIn(oTable) {
  var dg = (document.getElementById) ? true : false;
  var da = (document.all) ? true : false;
  var wo = (window.opera) ? true : false;
  if (dg && da && (!wo)) {
	navRoot = oTable.getElementsByTagName("td");
	for (i=0; i<navRoot.length; i++) {
	  node = navRoot[i];
	  childs = node.getElementsByTagName("img");
	  if(childs.length){
		  node.className+=" over";
	  }
	}
  }
}

function noticeOut(oTable) {
  var dg = (document.getElementById) ? true : false;
  var da = (document.all) ? true : false;
  var wo = (window.opera) ? true : false;
  if (dg && da && (!wo)) {
	navRoot = oTable.getElementsByTagName("td");
	for (i=0; i<navRoot.length; i++) {
	  node = navRoot[i];
	  childs = node.getElementsByTagName("img");
	  if(childs.length){
		  node.className=node.className.replace(" over", " notice");
	  }
	}
  }
}

function startList2() {
  var dg = (document.getElementById) ? true : false;
  var da = (document.all) ? true : false;
  var wo = (window.opera) ? true : false;
  if (dg && da && (!wo)) {
    Tables = document.getElementsByTagName("table");
    for (x=0; x<Tables.length; x++) {
      Table = Tables[x];
      if (Table.className=="notice") {
        navRoot = Table.getElementsByTagName("td");
        for (i=0; i<navRoot.length; i++) {
          node = navRoot[i];
          childs = node.getElementsByTagName("img");
          if(childs.length){
            node.onmouseover=function() {
              this.className+=" over";
            }
            node.onmouseout=function() {
              this.className=this.className.replace(" over", " notice");
            }
          }
        }
      }
    }
  }
}


//window.onload=startList;
