// Auto select navigation using jquery.  Boooyaaaaaa! 
	$(document).ready(function() { 
			var path = location.href.substring(location.href.lastIndexOf('/')+1);
			if (path) 
			$('#topnav a[@href$="' + path + '"]').addClass('active');
	
	}); 
