// JavaScript Document
window.addEvent('domready', function() {

	// Establish the Menu!
	var accordion = new Accordion('h3.atStart', 'div.atStart', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#54B604');
		},
	 
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#34464C');
		},
		duration: 600,
		transition: Fx.Transitions.Bounce.easeOut
		
	}, $('accordion'));
	
	//Set this page as the active accordion element	
});