		//
		//  In my case I want to load them onload, this is how you do it!
		// 
		Event.observe(window, 'load', loadAccordions, false);
	
		//
		//	Set up all accordions
		//
		function loadAccordions() {
			var navigationAccordion = new accordion('vertical_container');
			var currentPageHandle = $$(".currentPageSet");
			if(currentPageHandle.length) {
			  navigationAccordion.activate(currentPageHandle[0]);
			}
			
			if($("content_accordion")) {
			  window.contentAccordion = new accordion('content_accordion');
		  }
		}