window.addEvent('domready', function() {
																		 
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyles({
				'background-color': '#007662', 
				'color': '#FFFFFF'
			});
		},
		onBackground: function(toggler, element){
			toggler.setStyles({
				'background-color': '#D6EAE6', 
				'color': '#555555'
			});
		}
	});
 
	/*
	ReMooz.assign('a.remooz', {
		'origin': 'img',
		'shadow': 'onOpenEnd', // fx is faster because shadow appears after resize animation
		'resizeFactor': 0.8, // resize to maximum 80% of screen size
		'cutOut': false, // don't hide the original
		'opacityResize': 0.4, // opaque resize
		'dragging': false, // disable dragging
		'centered': true // resize to center of the screen, not relative to the source element
	});
	*/
 
});