$().ready(function() {
	$("#issue h2").after("<ul id='toc'></ul>");
	$("#main h3").each(function() {
		section = $(this).text();
		firstSpace = section.indexOf(' ');
		if (firstSpace>0) {
			firstWord = section.substring(0,firstSpace);
		} else {
			firstWord = section;
		}
		firstWord = 'tbn_'+firstWord.toLowerCase();
		$(this).children("a").remove();
		$(this).before("<a name='"+firstWord+"'></a>");
		$("#toc").append('<li><a href="#'+firstWord+'">'+section+'</a></li>');
	});
	$("#issue h4").each(function() {
		h4str = $(this).text();
		$(this).text(h4str.replace(/~/g,""));
	});
	$("#issue h4").prepend("<a href='#page' class='topLink'>^Back to Top</a>");
	$("#issue h2").after("<h3>Table of Contents</h3>");
});
