//
		//  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 accordion_slim=new accordion('vertical_container', {
			// The speed of the accordion
			resizeSpeed : 8,
			// The classnames to look for
			classNames : {
				// The standard class for the title bar
				toggle : 'vertical_accordion_toggle',
				// The class used for the active state of the title bar
				toggleActive : 'vertical_accordion_toggle_active',
				// The class used to find the content
				content : 'vertical_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'
			});
		}
		
		function hoover(element){
			element.addClassName('mouse_over');
		}
		
		function dishoover(element){
			element.removeClassName('mouse_over');
			
		}