function highlightActiveLink() {
	var URLpath;
	URLpath = window.location.pathname;
	switch (URLpath)
	{
		case "/about/history.html":
			document.getElementById("snHistory").className = "on";
			break;
		case "/about/theatre.html":
			document.getElementById("snTheatre").className = "on";
			break;
		case "/about/pavilion.html":
			document.getElementById("snPavilion").className = "on";
			break;
		case "/about/upstairs-gallery.html":
			document.getElementById("snUpstairs").className = "on";
			break;
		case "/about/directions-hours.html":
			document.getElementById("snDirections").className = "on";
			break;
		case "/about/board-of-directors.html":
			document.getElementById("snBoard").className = "on";
			break;
		case "/about/contact.html":
			document.getElementById("snContact").className = "on";
			break;
		case "/about/privacy.html":
			document.getElementById("snPrivacy").className = "on";
			break;
		case "/about/auditions-callbacks.html":
			document.getElementById("snAuditions").className = "on";
			break;
		case "/about/sitemap.html":
			document.getElementById("snSitemap").className = "on";
			break;
		case "/support/encore-circle.html":
			document.getElementById("snEncore").className = "on";
			break;
		case "/support/bravo.html":
			document.getElementById("snBravo").className = "on";
			break;
		case "/support/friends.html":
			document.getElementById("snFriends").className = "on";
			break;
		case "/support/faces.html":
			document.getElementById("snFaces").className = "on";
			break;
		case "/support/cab-jazz.html":
			document.getElementById("snCabjazz").className = "on";
			break;
		case "/support/actii.html":
			document.getElementById("snActii").className = "on";
			break;
		case "/support/chorusliners.html":
			document.getElementById("snChorusliners").className = "on";
			break;
		case "/support/honorary-producers.html":
			document.getElementById("snHonorary").className = "on";
			break;
		case "/support/volunteers.html":
			document.getElementById("snVolunteers").className = "on";
			break;
		case "/support/donation.html":
			document.getElementById("snDonation").className = "on";
			break;
		case "/support/season-sponsors.html":
			document.getElementById("snSeason").className = "on";
			break;
		case "/dining/frascati.html":
			document.getElementById("snFrascati").className = "on";
			break;
		case "/dining/red-onion.html":
			document.getElementById("snRedonion").className = "on";
			break;
		case "/dining/marmalade-cafe.html":
			document.getElementById("snMarmalade").className = "on";
			break;
		case "/dining/chez-allez.html":
			document.getElementById("snChezallez").className = "on";
			break;
		case "/dining/christine.html":
			document.getElementById("snChristine").className = "on";
			break;
		case "/dining/chez-melange.html":
			document.getElementById("snChezmelange").className = "on";
			break;
		case "/other-events/advertise.html":
			document.getElementById("snAdvertise").className = "on";
			break;
		case "/education/classes.html":
			document.getElementById("snChezallez").className = "on";
			break;
		case "/education/buy-tickets.html":
			document.getElementById("snEduTickets").className = "on";
			break;
		case "/education/sponsors.html":
			document.getElementById("snEduSponsors").className = "on";
			break;
		default:
			break;
	}
}

window.onload = highlightActiveLink;