$(document).ready(function() {

		// Determine the active section button
		if (location.pathname.substring(1)) {
		
			// get the path
			thePath = location.pathname.substring(1);
			thePath = thePath.match(/^\/?([a-z0-9_\.-]+)/); // only get the first part of the path

			thePath = '/' + thePath[0];
		
			navLink = $('#nav a[@href$="' + thePath + '"]');

			$(navLink).parent().addClass("ON");

		}
		


});