//moo-moo options

window.onload = function()
{
  // Pick your classes
  var myBox = document.getElementsByClassName('box_title');
  var myBoxOpen = document.getElementsByClassName('information');

  // Create the accordian
		var accordion = new fx.Accordion(myBox, myBoxOpen, {height:true});
		
		// Sets corresponding menu to open according to current, second-level directory
		if(location.pathname.indexOf('/arts_and_culture') != -1)
		{
			 accordion.showThisHideOpen(0);
		}
		else if(location.pathname.indexOf('/special_events') != -1)
		{
			 accordion.showThisHideOpen(1);
		}
		else if(location.pathname.indexOf('/about_us') != -1)
		{
			 accordion.showThisHideOpen(3);
		}
}