


$(document).ready(function() {
	
	/// fair-weather handy cursor
$('li.section-title').wrapInner("<a class='semanticsalt' href='#' onclick='return false;'></a>");

	// First we hide all exhibitis 
	//$("#menu ul li.section-title").nextAll().hide();
	$('#menu ul').find('li:not(.section-title)').hide();
	
	// then the active exhibit is showed
	$("#menu ul").each(function() {
		$(this).find("li.active").prevAll().nextAll().show();
		
	});
	

	// This is the toggle function
	// first it hides all sections
	$("li.section-title").add('a.semanticsalt').bind('click', function() {
		//$("#menu ul li.section-title").nextAll().fadeOut(25);
		$(this).nextAll().slideToggle(200);
	});
	
	
});


