/* Hide Overview pages from Top Nav and Side Nav */
$(function() {
	$("ul#topnav li a,ul.sideNav li a").each(function() {
		var $li;
		if ($(this).text() == "Overview") {
			$li = $(this).parent("li");
			/* Don't hide sections named overview. */			
			if (!$li.hasClass("nav-section")) {
				$li.hide();
				/* If I am the active nav link, apply that class to my parent <a> so it is highlighted */
				if ($(this).attr("href") == window.location.pathname) {					
					$li.parent("ul").parent("li").addClass("nav-active");
				}
			}
		}
	});	
});

