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;

//clock 
var timeStr, dateStr;

function clock() {
        now= new Date();

        // ????\? 
        hours= now.getHours();
        minutes= now.getMinutes();
        seconds= now.getSeconds();
        timeStr= "" + hours;
        timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;
        timeStr+= ((seconds < 10) ? ":0" : ":") + seconds;
       // document.clock.time.value = timeStr;

        // ???? 
        date= now.getDate();
        month= now.getMonth()+1;
        year= now.getYear();
        if (year<200) year=1900+year;
dateStr='';
       
        dateStr+= ((date < 10) ? " 0" : " ") + date;
 dateStr+= "." + month;
        dateStr+= "." + year;
        //document.clock.date.value = dateStr+" "+timeStr;
document.getElementById("timeq").value = ": "+dateStr+" "+timeStr;
        //Timer= setTimeout("clock()",1000);
        Timer= setTimeout("clock()",1000);
}