$(function(){
	var page = window.location.pathname;
	if(page.length < 1 || page == "/") {
		page = './';
	}
	$('#navMenu li a').each(function(){
		var href = $(this).attr('href');
		if (href == page) {
			$(this).addClass('current');
		} else {
			$(this).removeClass('current');
		}
	});
});

