//JavaScript Document
window.addEvent('domready', function() {
	//send the toggle and content arrays to vars
	var toggles = $$('.togglers');
	var content = $$('.elements');

	//set your objects and events 
	var AccordionObject = new Accordion(toggles, content, {
		display: $currentSection,
		height : true,
		width : false,
		opacity: false,
		fixedHeight: false, 
		fixedWidth: false,
		alwaysHide: true,

		onActive: function(toggler, element) {},

		onBackground: function(toggler, element) {}
	});
});
var $currentSection = 4;
