$(function(){
	/*var selector = document.createElement('a');
	$('ol h2').wrapInner(selector).click(function() {
		$(this).next('div').slideToggle('slow');
	});;
	$('ol div').hide();
	*/
	$('.col-1 > ol > li > h2').parent().parent().attr('id', 'faq');
	
	var toc = document.createElement('ul');
	var anchor = document.createElement('a');
	$('#faq h2').each(function (i, o) {
		var target = 'faq-' + i;
		$(anchor).attr('name', target);
		var link = $('<li><a href="' + window.location +'#' + target + '">' + $(o).html() + '</a></li>');
		$(o).wrapInner(anchor);
		$(toc).append(link);
	});
	$('#faq').before('<a name="toc"> </a>');
	$('#faq').before(toc);
	$('#faq>li').each(function (i, o) {
		$(o).append('<div class="to-toc"><a href="'+ window.location + '#toc">Top</a></div>');
	});
});