// JavaScript Document
Event.observe(window, 'load', loadAccordions, false);
function loadAccordions() {
	var Accordion = new accordion('sliders', {
	// The classnames to look for
	resizeSpeed : 4,	
	classNames : {
		// The standard class for the title bar
		toggle : 'accordion_toggle',
		// The class used for the active state of the title bar
		toggleActive : 'accordion_toggle_active',
		// The class used to find the content
		content : 'accordion_content'
	},
	// If you don't want the accordion to stretch to fit 
	// its content, set a value here, handy for horizontal examples.
	defaultSize : {
		height : 308,
		width : 247
	},
	// The direction of the accordion
	direction : 'vertical'
	});
	// Open first one
	Accordion.activate($$('#sliders .accordion_toggle')[1]);
}