$(document).ready(function(){
	var $nav = $('#nav'); // Container div to add the class to.
	var $page_section = $('#page_section'); // Div whose title is the active page.

	$nav.addClass($page_section.attr('title')); // Add active page title to container div to highlight active page link.
});

