$(document).ready(function() {
	var urlpath = window.location.pathname;
	
	urlpath = urlpath.split('/').join('');

	if (urlpath == '') {
		$('#nav-home').addClass('current');
	} else if (urlpath == 'about-aubrey') {
		$('#about-aubrey').addClass('current');
	} else if (urlpath == 'ask-aubrey') {
		$('#ask-aubrey').addClass('current');
	} else if (urlpath == 'about-the-blog') {
		$('#about-the-blog').addClass('current');
	} else {
		$('#navigation ul li').removeClass('current');
	}

});