// JavaScript Document
//
		//  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 topAccordion = new accordion('horizontal_container', {
				});
			
			var bottomAccordion = new accordion('vertical_container');
			
			
			

		}
