function menu2() 
{
var dropdown = document.getElementById("topmenu"); for (a=0; a<dropdown.childNodes.length; a++) 
{
node = dropdown.childNodes[a]; if (node.nodeName=="LI") 
{
node.onmouseover=function() 
{
this.className+=" over";
}
node.onmouseout=function() 
{
this.className=this.className.replace(" over");
}
}
}
}
window.onload=menu2;

function menu1()
{
var dropdown = document.getElementById("menumenu"); for (a=0; a<dropdown.childNodes.length; a++)
{
node = dropdown.childNodes[a]; if (node.nodeName=="LI")
{
node.onmouseover=function()
{
this.className+=" over";
}
node.onmouseout=function()
{
this.className=this.className.replace(" over");
}
}
}
}
window.onload=menu1;

function startTime()
{
var today=new Date()
var h=today.getHours()
var m=today.getMinutes()
var s=today.getSeconds()
var d=today.getDate()
var y=today.getFullYear()
var g=today.getMonth()+1
// add a zero in front of numbers<10
m=checkTime(m)
s=checkTime(s)
document.getElementById('txt').innerHTML=h+":"+m+":"+s+"&nbsp;&nbsp;"+d+"-"+g+"-"+y
t=setTimeout('startTime()',500)
}

function checkTime(i)
{
if (i<10) 
  {i="0" + i}
  return i
}

function startTime()
{
var today=new Date()
var h=today.getHours()
var m=today.getMinutes()
var s=today.getSeconds()
var d=today.getDate()
var y=today.getFullYear()
var g=today.getMonth()+1
// add a zero in front of numbers<10
m=checkTime(m)
s=checkTime(s)
document.getElementById('txt').innerHTML=h+":"+m+":"+s
t=setTimeout('startTime()',500)
}

function checkTime(i)
{
if (i<10) 
  {i="0" + i}
  return i
}

function checkBrowser()
{
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
if (browser_type=="Netscape"&&browser_version>=2)
window.location.replace("explorers.html")
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=6)
window.location.replace("explorers.html")
else
window.location="explorers.html"
}
