// JavaScript Document
browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4))
{

document.write('<style type="text/css">');
document.write('html ');
document.write('{scrollbar-arrow-color: #435b5b;scrollbar-base-color: #435b5b;scrollbar-darkshadow-color:#ffffff;');
document.write('scrollbar-track-color: #ffffff;scrollbar-face-color: #ffffff;scrollbar-shadow-color: #435b5b;');
document.write('scrollbar-highlight-color: #d6d9dc;scrollbar-3d-light-color: #435b5b;}');
document.write('</style>');
} 

function abrepagina(pagina, win, titulo)
{
    titulo = "'" + titulo +"'";
	kk = window.open(pagina,'titulo',win);
	kk.focus();
	return !kk;
}

function explorer() {
if (document.all&&document.getElementById) {
  navRoot = document.getElementById("nav");
  for (i=0; i<navRoot.childNodes.length; i++) {
	node = navRoot.childNodes[i];
	if (node.nodeName=="LI") {
	  node.onmouseover=function() {
		this.className+=" over";
	  }
	  node.onmouseout=function() {
		this.className=this.className.replace(" over", "");
	  }
	}
  }
}
}


function explorer_nav2() {
if (document.all&&document.getElementById) {
  navRoot2 = document.getElementById("nav2");
  if (navRoot2 != null){
	for (i=0; i<navRoot2.childNodes.length; i++) {
		node = navRoot2.childNodes[i];
		if (node.nodeName=="LI") {
		  node.onmouseover=function() {
			this.className+=" over";
		  }
		  node.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		  }
		}
	  }
  }
}
}

function explorer_nav3() {
if (document.all&&document.getElementById) {
  navRoot3 = document.getElementById("nav3");
  if (navRoot3 != null){
	for (i=0; i<navRoot3.childNodes.length; i++) {
		node = navRoot3.childNodes[i];
		if (node.nodeName=="LI") {
		  node.onmouseover=function() {
			this.className+=" over";
		  }
		  node.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		  }
		}
	  }
  }
}
}


function todo()
{
	explorer();
}

window.onload = todo;



