window.addEvent('domready', function() {
	
	//create our Accordion instance
	myAccordion = new Accordion($('accordion'), 'div.toggler', 'div.element', {
		opacity: false,
		// display will show index of elements - beginning with 0; display: -1 tricks it into staying closed
		show:-1,
		initialDisplayFx:false,
		//lets you toggle an open item closed
		alwaysHide: true,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#ffe802');
			toggler.setStyle('background', 'transparent url(/images/bg-leftnav-1-on.gif) repeat-x 0px 0px');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#ffffff');
			toggler.setStyle('background', 'none');
		}
	});
});