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