window.addEvent('domready', function() {
	var accordion = new Accordion($$('.toggle'),$$('.content'), {
		opacity: 0,
		onActive: function(toggler) {toggler.setStyle('background', 'url(\'../../graphx/minus.png\') no-repeat 0 8px'); }, //'background-image', 'url(\'../../graphx/minus.png\') no-repeat 0 8px'
		onBackground: function(toggler) { toggler.setStyle('background', 'url(\'../../graphx/plus.png\') no-repeat 0 8px');} //toggler.setStyle('background-image', 'url(\'../../graphx/plus.png\') no-repeat 0 8px');
	});
});