window.addEvent('domready', function() {
	
	//create our Accordion instance
	
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		alwaysHide: true,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#FFFFFF');
			toggler.setStyle('background', 'url(../images/title_01o.gif)  no-repeat left top');
			
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#EEEEEE');
			toggler.setStyle('background', 'url(../images/title_01.gif)  no-repeat left top');
		}
	});
 
});

 