	var stretchers = $$('div.accordion');	var togglers = $$('.toggler');	stretchers.setStyles({'height': '0', 'overflow': 'hidden'});		window.addEvent('load', function(){				//initialization of togglers effects				togglers.each(function(toggler, i){			toggler.color = toggler.getStyle('background-color');			toggler.$tmp.first = toggler.getFirst();			toggler.$tmp.fx = new Fx.Style(toggler, 'background-color', {'wait': false, 'transition': Fx.Transitions.Quad.easeOut});			toggler.setStyle('background-color', toggler.color).$tmp.first.setStyle('color', '#FF4F01');			toggler.$tmp.first.setStyle('font-weight', 'bold');			toggler.$tmp.first.setStyle('font-size', '11px');			toggler.$tmp.first.setStyle('text-transform', 'uppercase');		}); 				//the accordion				var myAccordion = new Accordion(togglers, stretchers, {						'opacity': false,						'start': true,						'transition': Fx.Transitions.Quad.easeOut,						onActive: function(toggler){				toggler.$tmp.fx.start('transparent');				toggler.$tmp.first.setStyle('color', '#000000');				toggler.$tmp.first.setStyle('font-weight', 'bold');				toggler.$tmp.first.setStyle('font-size', '11px');				toggler.$tmp.first.setStyle('text-transform', 'uppercase');			},						onBackground: function(toggler){				toggler.$tmp.fx.stop();				toggler.setStyle('background-color', toggler.color).$tmp.first.setStyle('color', '#FF4F01');				toggler.$tmp.first.setStyle('font-weight', 'bold');				toggler.$tmp.first.setStyle('font-size', '11px');				toggler.$tmp.first.setStyle('text-transform', 'uppercase');			}		});			});
