// ************************************************************
//
// Main Camp Bowie District JavaScript Document
//
// ************************************************************

// jQuery Code
jQuery(document).ready(function() {

  // Set sidebar height.
	contentHeight = $("div#contentWrapper").innerHeight();
	$("div#sidebar").height(contentHeight - 112);

	// Setup the menu
	$("ul#mainMenu").accordion({
		collapsable: true,
		header: '.expand',
		navigation: true,
		activate: false
	});

	// Remove cforms stuff
	$("p.linklove").html("");

	// Open links in a new window
	$('a.new-window').click(function(){
			window.open(this.href);
			return false;
	});
});

