//SET YOUR DEFAULT PAGE BELOW.
var defaultPage = "default.html"
var globalNav = "<ul>"+
                    "<li><a href='/our-programs/program-overview/TX-state-center'>Background</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-state-center/background/senate-76.html'>Senate Bill 76</a></li>"+						
							"<li><a href='/our-programs/program-overview/TX-state-center/background/senate-23.html'>Senate Bill 23</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-school-ready/'>Texas School Ready!</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/implementation/default.html'>Implementation</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-state-center/implementation/current-implementation-teem.html'>TEEM</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/research/default.html'>Research</a>"+
						"<ul>"+
							"<li><a href='/our-programs/program-overview/TX-state-center/research/key-findings.html'>Key Findings</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-state-center/research/current-state-in-early-childhood.html'>Current State of Affairs</a></li>"+
							"<li><a target='blank' href='/our-programs/program-overview/TX-state-center/pdf/sb76YearOne.pdf'>SB76 Report Year 1</a></li>"+
							"<li><a target='blank' href='/our-programs/program-overview/TX-state-center/pdf/SB76FinalSummTEEMRpt5_10_05.pdf'>SB76 Report Year 2</a></li>"+
							"<li><a target='blank' href='/our-programs/program-overview/TX-state-center/pdf/sb23_teem_srcs_final_report_scecd_sept_2007.pdf'>SB23 Sept 2008</a></li>"+
							"<li><a href='/our-programs/program-overview/TX-state-center/pdf/TexasSchoolReady-report_81stSession.pdf'>TSR Report 81st Legislature</a></li>"+
						"</ul>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/teem-sites.html'>Sites</a></li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/priorities/default.html'>Priorities</a>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/newsletter/default.html'>Newsletters</a></li>"+
					"</li>"+
					"<li><a href='/our-programs/program-overview/TX-state-center/classroom-themes/default.html'>Themes</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";
			}
		}
	}
}