//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul>"+
                    "<li><a href='/our-programs/program-overview/TX-reading-first/default.html'>Overview</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/background-history/federal-level-initiative.html'>Background</a>"+
						"<ul>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/background-history/federal-level-initiative.html'>Federal Level Initiative</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/background-history/trfi.html'>TRFI</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/background-history/trfi-partners.html'>TRFI Partners</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/background-history/reading-first-news.html'>Reading First News</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/implementation/development-assistance.html'>Implementation</a>"+
						"<ul>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/implementation/development-assistance.html'>Development/Assistance</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/implementation/training.html'>Training</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/implementation/rta-lcc-job.html'>RTA/LCC Positions</a></li>"+
						"<li><a href='/our-programs/program-overview/TX-reading-first/implementation/campus-district-leadership-roles.html'>Campus/District Leadership</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/case-studies/working-for-schools.html'>Case Studies</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-reading-first/case-studies/working-for-schools.html'>Working for Schools</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-reading-first/case-studies/working-for-districts.html'>Working for Districts</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-reading-first/case-studies/working-for-rta.html'>Working for RTA's</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/resource-document-library.html'>Resource Library</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/staff.html'>Staff</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-reading-first/contact-us.html'>Contact Us</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";
			}
		}
	}
}