
function MarkSelectedNav() {
	//mark selected tab
	var rootURL = document.location.host;
	var thisLocation = location.href;
	var thisLCLink;

	//are we .dev?
	if(thisLocation.indexOf(".dev") > -1) {
		rootURL = "newdawnrecovery.dev";
	}
	
	//************************************************************************//
	
	//overview
	if(thisLocation.indexOf(rootURL +"/eating-disorder/") > -1) {
		thisLCLink = document.$("overview");
	}
	
	//************************************************************************//
	
	//our story
	if(thisLocation.indexOf(rootURL +"/eating-disorder/about/") > -1) {
		thisLCLink = document.$("about");
		thisLCLink.className = "selected";
	}
	else {
		document.$("about-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/about/about-us.html") > -1) {
		thisLCLink = document.$("about-us");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/about/mission.html") > -1) {
		thisLCLink = document.$("mission");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/about/ethics.html") > -1) {
		thisLCLink = document.$("ethics");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/about/recent-news.html") > -1) {
		thisLCLink = document.$("recent-news");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/about/newsletter.html") > -1) {
		thisLCLink = document.$("newsletter");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/about/outcomes.html") > -1) {
		thisLCLink = document.$("outcomes");
	}
	
	//************************************************************************//
	
	//treatment options
	if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/") > -1) {
		thisLCLink = document.$("treatment-options");
		thisLCLink.className = "selected";
	}
	else {
		document.$("treatment-options-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/day-treatment.html") > -1) {
		thisLCLink = document.$("day-treatment");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/intensive-outpatient.html") > -1) {
		thisLCLink = document.$("intensive-outpatient");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/outpatient-services.html") > -1) {
		thisLCLink = document.$("outpatient-services");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/housing-options.html") > -1) {
		thisLCLink = document.$("housing-options");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/aftercare.html") > -1) {
		thisLCLink = document.$("aftercare");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/treatment-options/group-therapy-descriptions.html") > -1) {
		thisLCLink = document.$("group-therapy-descriptions");
	}
	
	//************************************************************************//
	
	//treatment options
	if(thisLocation.indexOf(rootURL +"/eating-disorder/facilities/") > -1) {
		thisLCLink = document.$("facilities");
		thisLCLink.className = "selected";
	}
	else {
		document.$("facilities-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/facilities/outpatient.html") > -1) {
		thisLCLink = document.$("outpatient");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/facilities/residential.html") > -1) {
		thisLCLink = document.$("residential");
	}
	
	//************************************************************************//
	
	//our staff
	if(thisLocation.indexOf(rootURL +"/eating-disorder/our-staff.html") > -1) {
		thisLCLink = document.$("our-staff");
	}
	
	//************************************************************************//
	
	//admissions/fees
	if(thisLocation.indexOf(rootURL +"/eating-disorder/admissions/") > -1) {
		thisLCLink = document.$("admissions");
		thisLCLink.className = "selected";
	}
	else {
		document.$("admissions-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/admissions/our-fees.html") > -1) {
		thisLCLink = document.$("our-fees");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/admissions/using-insurance.html") > -1) {
		thisLCLink = document.$("using-insurance");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/admissions/financial-assistance.html") > -1) {
		thisLCLink = document.$("financial-assistance");
	}
	
	//************************************************************************//
	
	//resources
	if(thisLocation.indexOf(rootURL +"/eating-disorder/resources/") > -1) {
		thisLCLink = document.$("resources");
		thisLCLink.className = "selected";
	}
	else {
		document.$("resources-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/resources/accreditations-affiliations.html") > -1) {
		thisLCLink = document.$("accreditations-affiliations");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/resources/assessment-tool.html") > -1) {
		thisLCLink = document.$("assessment-tool");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/resources/helpful-links.html") > -1) {
		thisLCLink = document.$("helpful-links");
	}
	
	//************************************************************************//
	
	//contact us
	if(thisLocation.indexOf(rootURL +"/eating-disorder/contact-us/") > -1) {
		thisLCLink = document.$("contact-us");
		thisLCLink.className = "selected";
	}
	else {
		document.$("contact-us-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/contact-us/driving-directions.html") > -1) {
		thisLCLink = document.$("driving-directions");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/contact-us/request-brochure.html") > -1) {
		thisLCLink = document.$("request-brochure");
	}
	
	//************************************************************************//

	//alumni
	if(thisLocation.indexOf(rootURL +"/eating-disorder/alumni/") > -1) {
		thisLCLink = document.$("alumni");
		thisLCLink.className = "selected";
	}
	else {
		document.$("alumni-group").style.display = "none";
	}
	//sub pages
	if(thisLocation.indexOf(rootURL +"/eating-disorder/alumni/calendar.html") > -1) {
		thisLCLink = document.$("calendar");
	}
	else if(thisLocation.indexOf(rootURL +"/eating-disorder/alumni/newsletter.html") > -1) {
		thisLCLink = document.$("newsletter");
	}
	
	//************************************************************************//

	//newsletter
	if(thisLocation.indexOf(rootURL +"/eating-disorder/newsletter.html") > -1) {
		thisLCLink = document.$("newsletter");
	}

	//************************************************************************//

	//calendar
	if(thisLocation.indexOf(rootURL +"/eating-disorder/calendar.html") > -1) {
		thisLCLink = document.$("calendar");
	}

	//************************************************************************//

	//faqs
	if(thisLocation.indexOf(rootURL +"/eating-disorder/faqs.html") > -1) {
		thisLCLink = document.$("faqs");
	}

	//************************************************************************//
	
	//mark selected
	if(thisLCLink) thisLCLink.className = "selected sright";
	
}