	function init(){
		
		var stretchers = document.getElementsByClassName('divshift'); //div that stretches
		var toggles = document.getElementsByClassName('showclient'); //click on h6s   

		//accordion effect
		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: true, duration: 400}
		);

		//hash functions
		var found = false;
		toggles.each(function(h6, i){
			var div = Element.find(h6, 'nextSibling'); //element.find is located in prototype.lite
			if (window.location.href.indexOf(h6.title) > 0) {
				myAccordion.showThisHideOpen(div);
				found = true;
			}
		});
		if (!found) myAccordion.showThisHideOpen(stretchers[0]);
	}