/*  File: docs.js           */
/*  By:   Jeremy Tredway    */
/*  Ver:  2009-05-06        */


// onload routines
$(function() {

	$(".docs_page").find(".bible_ref").each(function() {
		var bible_ref = $(this).text();
		var bible_url = '/show_verse.php?width=500&height=300&psg='+escape(bible_ref);
		$(this).wrapInner('<a class="thickbox" href="'+bible_url+'"></a>');
		$(this).click(function() {
			tb_show(bible_ref, bible_url, false);
			return false;
		});
	});

	$(".docs_page .index .toggle").click(function() {
		$(this).next(".menu").toggle();
		return false;
	});

	$(".docs_page").find("h2:not(:first), .docs_nav:last").before("<a class='top' href='#top_nav'>Top</a>");

});
