function initAccord () {
	var stretchers = $$('.sub-box');
	var togles = $$('.nav-title')
	var myAccordion = new Fx.Accordion(togles, stretchers, {opacity: true, duration: 400});
	myAccordion.showThisHideOpen(stretchers[-1]);
	for(var i =0; i < togles.length; i++) {
		if(togles[i].className.indexOf("active") != -1) {
			myAccordion.showThisHideOpen(stretchers[i]);
			return false;
		}
	}
}
if (window.addEventListener) window.addEventListener("load", initAccord, false);
else if (window.attachEvent) window.attachEvent("onload", initAccord);
