		//
		//  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', {
			  classNames : {
					toggle : 'accordion_toggle',
					toggleActive : 'accordion_toggle_active',
					content : 'accordion_content'
				},
				// If you don't want the accordion to stretch to fit 
				// its content, set a value here, handy for horixontal examples.
				defaultSize : {
					height : null,
					width : null
				},
				// The direction of the accordion
				direction : 'vertical',
				// Should the accordion activate on click or say on mouseover? (apple.com)
				onEvent : 'click'
			});
		}