/**
 * Scripts to run when the page is ready
 */
$(document).ready(function()
{
	/**
	 * Initiate the collapsable divs
	 */
	$(".collapse > *:first-child").click(function(){
		$(this).next().toggle('slow');
		return false;
	});
	
	
	/**
	 * Setup the togglers 
	 */
	$(".toggle").click(function(){
		$($(this).attr('href')).toggle('slow');
		$(this).text(($(this).text() == "[-]") ? "[+]" : "[-]");
		return false;
	});

	
	/**
	 * Hide specified elements (from JS not CSS)
	 */
	$(".hide").hide();
});
