// for http://designop.us/experiments/demo-applying-the-fine-art-of-web-design-to-online-comics
$(function(){
	$("ol#page").hide();
	$("h4").click(function(){
		$(this).next().toggle();
		return false;
	});
});
