
	//
	//  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 bottomAccordion = new accordion('vertical_container');
		
	
		
		// Open first one
		bottomAccordion.activate($$('#vertical_container .accordion_toggle')[0]);
		
		// Open second one
	}
	

