// JavaScript Document


if(!window.Node){
  var Node = {ELEMENT_NODE : 1, TEXT_NODE : 3};
}

function checkNode(node, filter){
  return (filter == null || node.nodeType == Node[filter] || node.nodeName.toUpperCase() == filter.toUpperCase());
}

function getChildren(node, filter){
  var result = new Array();
  var children = node.childNodes;
  for(var i = 0; i < children.length; i++){
    if(checkNode(children[i], filter)) result[result.length] = children[i];
  }
  return result;
}

function getChildrenByElement(node){
  return getChildren(node, "ELEMENT_NODE");
}

function getFirstChild(node, filter){
  var child;
  var children = node.childNodes;
  for(var i = 0; i < children.length; i++){
    child = children[i];
    if(checkNode(child, filter)) return child;
  }
  return null;
}

function getFirstChildByText(node){
  return getFirstChild(node, "TEXT_NODE");
}

function getNextSibling(node, filter){
  for(var sibling = node.nextSibling; sibling != null; sibling = sibling.nextSibling){
    if(checkNode(sibling, filter)) return sibling;
  }
  return null;
}
function getNextSiblingByElement(node){
        return getNextSibling(node, "ELEMENT_NODE");
}

// Menu Functions & Properties

var activeMenu = null;

function showMenu(obj) {
  //alert(nMenu);
  if(activeMenu){
    activeMenu.className = "";
    getNextSiblingByElement(activeMenu).style.display = "none";
  }
  if(obj == activeMenu){    
    activeMenu = null;    
  } else {
  
    obj.className = "activo";
    getNextSiblingByElement(obj).style.display = "block";
	
    activeMenu = obj;
  }
  return false;
}

function initMenu(){
  var menus, menu, text, a, i;
  menus = getChildrenByElement(document.getElementById("menu"));
  for(i = 0; i < menus.length; i++){
    menu = menus[i];
    text = getFirstChildByText(menu);   
    a = document.createElement("a");
    menu.replaceChild(a, text);
    a.appendChild(text);
    a.href = "#";
    a.onclick = showMenu;
    a.onfocus = function(){this.blur()};        
    valor=new String ();
    valor=text.nodeValue;
    if (document.getElementById("seccion")){
        if ((document.getElementById("seccion").value=="carrera_detalle" || document.getElementById("seccion").value=="calendario" || document.getElementById("seccion").value=="calendario2") && valor.indexOf("CALENDARIO")!=-1)
            a.className="activo";
        if ((document.getElementById("seccion").value=="clasificaciones_detalle" || document.getElementById("seccion").value=="clasificaciones" || document.getElementById("seccion").value=="videos" || document.getElementById("seccion").value=="fotos" || document.getElementById("seccion").value=="sms") && valor.indexOf("RESULTADOS")!=-1)
            a.className="activo";    
        //if ((document.getElementById("seccion").value=="planes" || document.getElementById("seccion").value=="consejos" || document.getElementById("seccion").value=="estiramientos" || document.getElementById("seccion").value=="musculacion" || document.getElementById("seccion").value=="tecnica") && valor.indexOf("ENTRENA")!=-1)
          //  a.className="activo";                
    }
  }
}

//if(document.createElement) window.onload = initMenu;
