// Handles the accordion on the "bereken premie" page.
var GSPremieAccordion = new Class({
	initialize: function() {
		this.acc = new Accordion(
			$('options_info')
			,'h3.toggler'
			,'div.togglable', {
				opacity: false
				,duration:"short"
				,onActive: function(toggler, element){
				}
				,onBackground: function(toggler, element){
				}
			}
		);
	}
});

window.addEvent('domready', function(oEv) {
	var gs_premie_acc = new GSPremieAccordion();
});
