window.addEvent ('domready', function() {
	var accordion = new Accordion($$('.toggler'),$$('.element') , { //initialise accordion and apply to all instances of toggler and element classes//
	display: 0, //display first panel//
	alwaysHide: true, //allow active panel to self-close onclick//
	opacity: 0
	});  
});
