$(document).ready(function(){

	$('div.bible p:last-child').addClass('last');
		
	$('.stripe tr:even').addClass('alt');
		
	// hide all toggles
	$('div.toggle, span.toggle').hide();
		
	// toggles
	$('a.toggle').toggle(function(){
		var toggle = $(this).parent().next('div.toggle, span.toggle');
		toggle.fadeIn();
	}, function(){
		$(this).parent().next().fadeOut();
	});

	// show/hide all toggles
	$('a.toggle_all').toggle(function(){
		var toggle = $('div.toggle, span.toggle');
		toggle.fadeIn();
	}, function(){
		$('div.toggle, span.toggle').fadeOut();
	});
	
});
