window.onload = function() { //indica en el menu cual esta selecionado if(self.location.href.lastIndexOf('=') == self.location.href.length - 1 || self.location.href.indexOf("?") == -1 ) { for(i=0; i <= document.links.length-1 ;i++){ sVar= "" str = "" sVar= "" + document.links[i] objeto = document.links[i] if(sVar.lastIndexOf('?') > -1) { pos1 = sVar.lastIndexOf('?')+1 str = sVar.substring(pos1) if((parseInt(noticiaMenuDef) != -1 && (str.toLowerCase() == 'id_noticia=' + noticiaMenuDef) )){ objeto.style.color="#96004B"; } } } } else { for(i=0; i < document.links.length ;i++){ sVar= "" str = "" sVar= "" + document.links[i] objeto = document.links[i] if(sVar.lastIndexOf('?') > -1) { pos1 = sVar.lastIndexOf('?')+1 str = sVar.substring(pos1) if(str.toLowerCase() == 'id_noticia=0' && (objeto.className=="submenu")) { objeto.style.color="#96004B"; } } } } }