// Test!

$(document).ready(function(){
	create_headers();
	hide_archives();
	});

function hide_archives(){
	if(! window.location.pathname.match('^\/(topics|20).+')){
		$('#archives').hide();
	}
}

function create_headers(){
	$("#autocontents").append('<ul></ul>');
	$("div.post-entry").find(":header").each(function(i){
			if(this.tagName == 'H1' || this.tagName == 'H2'){
			var anchorContent = '<li><a href="#' + this.innerHTML +'">' + this.innerHTML + '</a></li>';
			$(this).prepend('<a name="' + this.innerHTML + '"></a>');
			$("#autocontents").append(anchorContent);
			}
			});
}
