// highlight selected story
$(document).ready(function (){
	var currentPage = document.location.pathname.toString();
	$('.prinav li a').each(
		function(e){
			if ($(this).attr("href") == currentPage){
				$(this).addClass("selected");
			}
		});
});
