﻿function onMenuHov(obj)
{
  obj.setAttribute("className", "menuhov");
  return true;
}
function onMenuLeave(obj)
{
  obj.setAttribute("className", "menunohov");
  return true;
}
function onHov(obj)
{
  obj.setAttribute("className", "hov");
  return true;
}
function onLeave(obj)
{
  obj.setAttribute("className", "nohov");
  return true;
}