//expands appropriate navigation table based on URL and hides the closed navigation state of that nav table
var expandalbeNavItems = [ "about", "read", "subscribe", "support", "write" ];

$(function(){
	if (jQuery.url.segment(0)){
		$("#nav-" + jQuery.url.segment(0) + "-open").show();
		$("#nav-" + jQuery.url.segment(0) + "-closed").hide();
	;}
});