$(function() {
	// Highlight the page in the menu
	$('#nav a').each(function() { 
		if($(this).attr('href') == window.location.href) {
			// Loop through any parents and highlight them
			$(this).parents('#nav li').children('a:first-child').addClass('navPage');
		}
	});
});
