



// JavaScript Document
$(document).ready(function()
{
	// First we hide all submenus 
	$("#menu ul li.section-title").nextAll().hide();
	
	// This is the toggle function
	// First the old section is hidden (slide up)
	// Then ones whose section title has been clicked will been shown
	$("#menu ul li.section-title").click(function(){
		$("#menu ul li.section-title").nextAll().hide();
		$(this).nextAll().show(400);
	});
	
});
