// JavaScript Document
function initListaHome() {
  vLis = document.getElementsByTagName('LI');
  for(i=0;i<vLis.length;i++) {
	vLi=vLis[i];
	if(vLi.className=='itmListaHome') {
	  vLi.onmouseover = function () { this.className = 'itmListaHomeSel'; }
	  vLi.onmouseout = function () { this.className = 'itmListaHome'; }
	  vDivs = vLi.getElementsByTagName('div');
	  vDiv = vDivs[vDivs.length-1];
	  vAs = vDiv.getElementsByTagName('a');
	  vA = vAs[vAs.length-1];
	  vLi.href = vA;
	  vLi.onmousedown = function () { location.href = this.href };
	}
  }
}

if(window.addEventListener)
  window.addEventListener("load", initListaHome, true)
if(window.attachEvent)
  window.attachEvent("onload", initListaHome)
