window.addEvent('domready', function()
	{
		var togglers = $$('h1.toggler', 'h2.toggler');
		var accheight = 240;
		if($$('body#testimonials').length > 0) accheight = 135;
		if($$('body#meet-our-team').length > 0) accheight = 150;
		
		var accshow = 0;
		//if ($$('body#meet-our-team').length > 0) {
		//	accshow = -1;
		//}
		togglers.addEvent('mouseover', function(){ this.style.cursor = 'pointer';});
		var stretchers = $$('div.stretcher');
		var accordion = new Accordion(togglers, stretchers, 
			{
				show:accshow,
				opacity: false,
				fixedHeight:accheight,
				onActive:function(toggler, element)
				{
					toggler.addClass('active');
				},
				onBackground: function(toggler, element)
				{
					toggler.removeClass('active');
				}
			}, 
			$('ContentBoxInner')
			);
	}
);