//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "/lg-es/"
var globalNav = "<ul>"+
	"<li><a href='#'>Sobre</a>"+
		"<ul>"+
			"<li><a href='/lg-es/about/technology.html'>Tecnolog&iacute;a</a></li>"+
			"<li><a href='/lg-es/about/quality.html'>Calidad</a></li>"+
		"</ul>"+
	"</li>"+
	"<li><a href='#'>Productos</a>"+
		"<ul>"+
			"<li><a href='/lg-es/products/applications.html'>Aplicaciones</a></li>"+
			"<li><a href='/lg-es/products/specifications.html'>Especificaciones</a></li>"+
			"<li><a href='/lg-es/products/connectors.html'>Conectores</a></li>"+
		"</ul>"+
	"</li>"+
	"<li><a href='#'>Casos</a>"+
		"<ul>"+
			"<li><a href='/lg-es/case_histories/'>Notas de campo</a></li>"+
			"<li><a href='/lg-es/case_histories/tech_notes.html'>Notas t&eacute;cnicas</a></li>"+
		"</ul>"+
	"</li>"+
		"<li><a href='#'>Comun&iacute;quese</a>"+
		"<ul>"+
			"<li><a href='/lg-es/contact_us/contact-us.html'>Ventas</a></li>"+
			"<li><a href='/lg-es/contact_us/deployment.html'>Despliegue</a></li>"+
		"</ul>"+
		"</li>"+
"</ul>";

var pathName = new String(location.pathname);//Firefox represents the href value as /filename.html
var fullHref = new String(location.href);//IE represents the href value as http://www.domain.com/filename.html



if(fullHref.charAt(fullHref.length-1) == "/"){
	fullHref = fullHref + defaultPage;
}

//set '/' to the correct default Page
if(pathName =="/"){
	pathName = "/"+defaultPage;
}

//write the navigation
document.write(globalNav);


var navList = document.getElementsByTagName('LI');
for(i in navList){
	if(navList[i].hasChildNodes){
		if(navList[i].firstChild.attributes.href){
			var hrefPath = navList[i].firstChild.attributes.href.value;
			if((hrefPath == pathName) || (fullHref == hrefPath)){
				navList[i].className="active";
			}
		}
	}
}



