	//
	//  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() {

		//return if there is no accordion box on the page
		if(!$$('.vertical_container')) {
			return;
		}

		var Accordion = new accordion('vertical_container');

	}