window.addEvent('mousewheel', function() {
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
                display: 0,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#41464D');
                        toggler.setStyle('cursor', 'default');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
                        toggler.setStyle('cursor', 'pointer');
		}
	});

	//add click event to the "add section" link
	$('add_section').addEvent('click', function(event) {
		event.stop();
	});
});
