//the main function, call to the effect object
	function init(){
	
	
		var stretchers = document.getElementsByClassName('moostretcher'); //div that stretches
		var toggles = document.getElementsByClassName('moodisplay'); //h3s where I click on

		//accordion effect
		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: false, duration: 500}
		);

		//hash function
	}