jQuery(document).ready(function(){
	$('h2.collapse').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
	
	if (menuToOpen != 'none') $('h2#' + menuToOpen).next().show('slow');
});
