

$(document).ready(function(){
	// First we hide all exhibitis

	$("#menu ul li.section-title").nextAll().hide();

	// then the active exhibit is showed

$("#menu ul").each(function()
{
$(this).find("li.active").prevAll().nextAll().show();
});


	//This is the toggle function

$("#menu ul li.section-title").click(function()
{
$("#menu ul li.section-title").nextAll().hide();
$(this).nextAll().slideToggle("fast");
});
	//added by cab
	$("#menu ul li.section-title").hover(
	      function () {
	        $(this).css({'color' : '#000000'});
	      }, 
	      function () {
	        $(this).css({'color' : '#666666'});
	      }
	 );
	
	setTimeout('move_up()', 1);

});
