$(function(){
	/*
	* add selected class to current links
	*/
	$("#about-menu ul li a, #page-header a").each(function(){
		var hreflink = $(this).attr("href");
		var filePath = window.location.pathname;
		var fileName = filePath.substr(filePath.lastIndexOf("/") + 1);
		if (hreflink.toLowerCase() == fileName.toLowerCase()) {
			$(this).addClass("selected");
		}
		
		// add selected class if "about" subnav is selected
		if (fileName.toLowerCase().indexOf("about") != -1) {
			$('#AboutLink').addClass("selected");
		}
	});
	
});
