// JavaScript Document


function MenuOverRow(Row){
            if (document.all && !Row.contains(event.fromElement)) {
                  if (location.href.indexOf(Row.id+'.')<0) {
                        Row.className=Row.parentElement.parentElement.id +
'ItemMouseOver';
                  } else {
                        Row.className=Row.parentElement.parentElement.id +
'CurItemMouseOver';
                  }
            }
      }
function MenuOutRow(Row){
            if (document.all && !Row.contains(event.toElement)) {
                  if (location.href.indexOf(Row.id+'.')<0) {
                        Row.className=Row.parentElement.parentElement.id +
'Item';
                  } else {
                        Row.className=Row.parentElement.parentElement.id +
'CurItem';
                  }
            }
      }


function InitMenu(Table)
      {
            var CurRowIndex=0;

            while (CurRowIndex<=Table.rows.length-1) {
                  if (Table.rows[CurRowIndex].id=='') {
                        //Do nothing
                  } else if
(location.href.indexOf(Table.rows[CurRowIndex].id+'.')<0) {
                        Table.rows[CurRowIndex].className=Table.id +
'Item';
                  } else {
                        Table.rows[CurRowIndex].className=Table.id +
'CurItem';
                  }
                  CurRowIndex=CurRowIndex+1;
            }
      }

