$(document).ready(function() {
// hides the chapters as soon as the DOM is ready
// (a little sooner than page load)
	$('#chapters').hide();
	
// toggles the chapters on clicking the noted link 
	$('a#chapterReveal').click(function() {
		$('#chapters').slideToggle(400);
		return false;
	});
 
});