//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul>"+
                    "<li><a href='/our-programs/program-overview/TX-head-start/default.html'>Background</a></li>"+
					/*"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/default.html'>Our Initiatives</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/accountability.html'>Accountability</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/early-literacy.html'>Early Literacy</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/faith-based.html'>Faith Based</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/fatherhood.html'>Fatherhood</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/health.html'>Health</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/quality-teacher.html'>Quality Teacher</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/STEP.html'>STEP</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/current-initiatives/archives.html'>Archives</a></li>"+
						"</ul>"+
					"</li>"+*/
					"<li><a href='/our-programs/program-overview/TX-head-start/directors/default.html'>Directors</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/federal-regulations.html'>Federal Regulations</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/grantee-list.html'>Grantee List</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/juvenile-justice.html'>Juvenile Justice</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/program-info-report.html'>PIR</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/resources-early-childhood-intervention.html'>Intervention Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/resources-welfare-peer-ta.html'>Welfare Peer Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/social-emotional.html'>The CSEFEL</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/tx-trainers-registry-pack.html'>Trainers Registration</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/video-resources-dir.html'>Video &amp; Print Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/directors/internet-links-dir.html'>Internet Links</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-head-start/educators/default.html'>Educators</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/educators/educators-resources.html'>Educators Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/educators/video-resources-edu.html'>Video Resources</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/educators/internet-links-edu.html'>Internet Links</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-head-start/parents-children/default.html'>Parents/Child</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/parents-children/parents.html'>Parents</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/parents-children/children.html'>Child</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-head-start/status-reports.html'>Reports</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-head-start/promising-practices.html'>Promising Practices</a></li>"+
/*					"<li><a href='/our-programs/program-overview/TX-head-start/employment/default.html'>Employment</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/employment/employment-opp-dir.html'>Directors</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-head-start/employment/employment-opp-edu.html'>Educators</a></li>"+
						"</ul>"+
					"</li>"+*/
					"<li><a href='http://www.uth.tmc.edu/tececds/'>TECECDS</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-head-start/contact.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";
			}
		}
	}
}