//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul>"+
                    "<li><a href='/our-programs/program-overview/reach-out-read/default.html'>Background</a></li>"+
					"<li><a href='/our-programs/program-overview/reach-out-read/implementation/default.html'>Implementation</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/reach-out-read/implementation/locations.html'>Locations</a></li>"+
							"<li><a href='/our-programs/program-overview/reach-out-read/implementation/hurricane-katrina.html'>Hurricane Katrina</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/reach-out-read/volunteer/default.html'>Volunteer</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/reach-out-read/volunteer/ror-friends.html'>Friends of ROR-TX</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/reach-out-read/upcoming-events/default.html'>Upcoming Events</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/reach-out-read/upcoming-events/read-romp.html'>Read &amp; Romp</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/reach-out-read/tools-resources/default.html'>Tools &amp; Resources</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/reach-out-read/tools-resources/development-milestones.html'>Development Milestones</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/reach-out-read/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";
			}
		}
	}
}