$(document).ready(function() {
	
	$('#about #nav a').each(function() {
		var location = '/' + new String(window.location).split('/').slice(3).join('/');
		if(location.substr(0, $(this).attr('href').length) == $(this).attr('href')) {
			$(this).addClass('selected');
		}
	});

});