<!--
var winW = 780;
if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth-16;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = document.body.offsetWidth-20;
 }
}

var  timerId=0 ;
var  div_left = ((winW/2)-322);
 
function clearTimer() {
  if (timerId!=0) {
    clearTimeout(timerId); timerId=0; }}
 
function startTimer() {
  clearTimer(); timerId=setTimeout('timerId=0;hideMenus()',500); }
 
function showMenu(menuNum) {
  clearTimer(); hideMenus();
  document.getElementById('menu_'+menuNum).style.display=""; 
  document.getElementById('menu_'+menuNum).style.left=div_left;
  }
 
function hideMenus() {
  var  i=1 ;
  while (document.getElementById('menu_'+i)) {
    document     .getElementById('menu_'+i).style.display="none";
    i++; }}
 
function hiLite(theOption) {
  clearTimer();
}
 
function unLite(theOption) {
  startTimer();
}
//--> 

