
		//
		//	Set up all accordions
		//
		function loadAccordions() {
			var bottomAccordion = new accordion('bottom_container', {
				onEvent : 'mouseover'
			});

			// Open first one
			bottomAccordion.activate($$('#bottom_container .accordion_toggle')[0]);
		}
		//
		//  In my case I want to load them onload, this is how you do it!
		//
		addLoadEvent(loadAccordions);


