$(document).ready(function() {
var toc = '
';
toc += 'In this document:
';
$('#LeftColumn h1, #LeftColumn h2, #LeftColumn h3, #LeftColumn h4').each(function(i) {
var current = $(this);
current.attr('id', 'title' + i);
toc += '- ' + current.html() + '
';
});
toc += '
';
$('#RightColumn').prepend(toc);
});