function initTwo(){
	var stretchers = document.getElementsByClassName('box');
	var toggles = document.getElementsByClassName('tab');
	var myAccordion = new fx.Accordion(
		toggles, stretchers, {opacity: false, height: true, duration: 400}
	);

	var found = false;
	toggles.each(function(h2, i){
		var div = Element.find(h2, 'nextSibling');
			if (window.location.href.indexOf(h2.title) > 0) {
				myAccordion.showThisHideOpen(div);
				found = true;
			}
		});
		if (!found) myAccordion.showThisHideOpen(stretchers[0]);
}