	//the main function, call to the effect object
	function init(){
		var stretchers = document.getElementsByClassName('stretchers'); //div that stretches
		var toggles = document.getElementsByClassName('toggler'); //h3s where I click on
		//accordion effect
		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: true, duration: 400}
		);
				//anchors
		if(document.getElementsByClassName('open').length != 0)
			myAccordion.showThisHideOpen(document.getElementsByClassName('open')[0].parentNode.childNodes[1]);
	}

