// this tells jquery to run the function below once the DOM is read
jQuery(document).ready(function() {
	jQuery('.toggle').hide();
	jQuery('.startshown').show();
	// capture clicks on the toggle links
	jQuery('a.toggleLink').click(function() {
		// toggle the display
		jQuery(this).parent().next('.toggle').toggle('slow');
		// return false so any link destination is not followed
		return false;
	});
});

