window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: true,
                alwaysHide: true,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#4c4b4c');
			toggler.setStyle('background', 'transparent url(uploads/graphics/2010/sections/accordion_bg_active.png) no-repeat');
		},

		onBackground: function(toggler, element){
			toggler.setStyle('color', '#DA000B');
			toggler.setStyle('background', 'transparent url(uploads/graphics/2010/sections/accordion_bg_normal.png) no-repeat');
		}
	});


});


