window.onload = function(){
  removeOdds(document.documentElement);
  
  var LeeeftMenuLI = document.getElementById('LeeeftMenu').getElementsByTagName('li');
  for(var i=0; i<LeeeftMenuLI.length;i++){
    LeeeftMenuLI[i].onmouseover = function(){
      this.lastChild.style.display = 'block';
    }
    LeeeftMenuLI[i].onmouseout = function(){
      this.lastChild.style.display = 'none';
    }
  }
  
  
  
  var ActId = document.getElementById('Act');
  if(ActId.parentNode.className == 'lmVnutr'){
    ActId.parentNode.style.display = 'block';
    ActId.style.background = 'url(/files/tmpl/propeler.gif) no-repeat left';
    ActId.style.color = '#297fa5';
    ActId.parentNode.parentNode.onmouseover = function(){
      ActId.parentNode.parentNode.lastChild.style.display = 'block';
    }    
    ActId.parentNode.parentNode.onmouseout = function(){
      ActId.parentNode.parentNode.lastChild.style.display = 'block';
    }
  }
  else if(ActId.parentNode.className == 'lm'){
    ActId.style.textDecoration = 'underline';
  }
}
