/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

startList = function() {
      if (document.all&&document.getElementById) {
            navRoot = document.getElementById("hmenu");
            for (i=0; i<navRoot.childNodes.length; i++) {
                  node = navRoot.childNodes[i];
                  if (node.nodeName=="LI") {
                        node.onmouseover=function() {
                              if(this.className!="act") {
                                this.className="over";
                              }
                              //this.style.display = "block";
                        }
                        node.onmouseout=function() {
                              if(this.className=="over") {
                                this.className="";
                              }
                              //this.style.display = "none";
                        }
                  }
            }
      }
}

window.onload=startList;

function fixPNG(element)
{
    var src;

    if (element.tagName=='IMG') //Если текущий элемент картинка (тэг IMG)
    {
        src = element.src;
        element.src = "/clear.gif"; //заменяем изображение прозрачным gif-ом
    }
    element.width = element.clientWidth;
    element.height = element.clientHeight;

    if (src) element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader (src='" + src + "',sizingMethod='crop')";

}