$(document).ready(function()
{
	
// First we hide all exhibitis
$("#list ul li.section-title").nextAll().hide();

// then the active exhibit is shown
$("#list ul").each(function()
{

$(this).find("dl.active").prevAll().nextAll().show();
});

// This is the toggle function
// first it hides all sections
$("#list ul li.section-title").click(function(){
$("#list ul li.section-title").nextAll().hide();
$(this).nextAll().slideToggle("slow");
});
setTimeout('move_up()', 1);
});
