//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul>"+
                    "<li><a href='/our-programs/program-overview/TPRI/default.html'>Background</a></li>"+
					"<li><a href='/our-programs/program-overview/TPRI/research.html'>Research</a></li>"+
					"<li><a href='/our-programs/program-overview/TPRI/training/default.html'>Training</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TPRI/training/tpri-assessment.html'>Training Assessment</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/training/tpri-survey.html'>Training Survey</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/training/trainers.html'>Trainers</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/training/training-schedule.html'>Training Schedule</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TPRI/vendors.html'>Vendors</a></li>"+
					"<li><a href='/our-programs/program-overview/TPRI/tools-resources/default.html'>Tools/Resources</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TPRI/tools-resources/tools.html'>Tools</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/tools-resources/resources.html'>Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/tools-resources/case-studies.html'>Case Studies</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/tools-resources/development.html'>Development</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TPRI/cars/default.html'>CARS</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TPRI/cars/resources.html'>Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TPRI/cars/grants.html'>Grants</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TPRI/products.html'>Products</a></li>"+
					"<li><a href='/our-programs/program-overview/TPRI/news.html'>News</a></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";
			}
		}
	}
}