// Copyright (c) 2007 Bromel
/*-----------------------------------------------------------------------------------------------*/
		//  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('#top_container', {
				classNames : {
					toggle : 'horizontal_accordion_toggle',
					toggleActive : 'horizontal_accordion_toggle_active',
					content : 'horizontal_accordion_content'
				},
				defaultSize : {
					width : 525
				},
				direction : 'horizontal'
			});
			var bottomAccordion = new accordion('#bottom_container');
			
			// Open first one
			bottomAccordion.activate($$('#bottom_container .accordion_toggle')[0]);
		}
