$(function() {

	book.indexes = new Indexes();
	book.get = function() {};

	$('div#main h2').filter(':eq(1)').click(function() {
		book.index('content', $(this).next().children('dl'));
		$(this).unbind('click', arguments.callee);
		return false;
	}).end().click(function() {
		$(this).next().slideToggle('normal');
		return false;
	}).each(function(i) {
		if(i != 0) $(this).next().hide();
	});
});
