leilaoOver = function () {
    if (document.all&&document.getElementById) {
        /*navRootUL = document.getElementById("listLeilao");
        navRoot = navRootUL.getElementsByTagName("DIV");*/
        navRoot = $('div.wrap_box_lc');
        for (i=0; i<navRoot.length; i++) {
            node = navRoot[i];
            node.onmouseover=function () {
                this.className+=" over";
            }
            node.onmouseout=function () {
                this.className=this.className.replace(" over", "");
            }
        }
    }
}
/*
toolTipFiltro = function () {
    if (document.all&&document.getElementById) {
        boxRoot = $('div.box_opt_leilao');
        for (x=0; x<boxRoot.length; x++) {
            node2 = boxRoot[x];
            node2.onmouseover=function () {
                this.className+=" over";
            }
            node2.onmouseout=function () {
                this.className=this.className.replace(" over", "");
            }
        }
    }
}*/

function addEvent( obj, type, fn ) {
  if (obj.addEventListener)
      obj.addEventListener( type, fn, false );
  else if (obj.attachEvent)
  {
      obj["e"+type+fn] = fn;
      obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
      obj.attachEvent( "on"+type, obj[type+fn] );
  }
}

addEvent(window, 'load', leilaoOver);
/*addEvent(window, 'load', toolTipFiltro);*/
