var stretchers = $$('div.accordion');
var togglers = $$('h3.toggler');
stretchers.setStyles({'height': '0', 'overflow': 'hidden', 'background': '#060606'});
window.addEvent('load', function(){
	togglers.each(function(toggler, i){
		toggler.color = toggler.getStyle('background-color');
		toggler.$tmp.first = toggler.getFirst();
		toggler.$tmp.fx = new Fx.Style(toggler, 'background-color', {'wait': false, 'transition': Fx.Transitions.Quart.easeOut});
	});
	var myAccordion = new Accordion(togglers, stretchers, {
		'opacity': false,
		'start': false,
		'transition': Fx.Transitions.Quad.easeOut,
		onActive: function(toggler){
			toggler.$tmp.fx.start('#2b2b2b');
			toggler.$tmp.first.setStyle('color', '#b5b5b5');
			toggler.setStyle('background-image', 'none');
			if (toggler.id == 'weboldal') {
				document.getElementById('info').style.backgroundPosition = '0 0';
			}
			if (toggler.id == 'webaruhaz') {
				document.getElementById('info').style.backgroundPosition = '-114px 0';
			}
			if (toggler.id == 'keresooptimalizalas') {
				document.getElementById('info').style.backgroundPosition = '-228px 0';
			}
			if (toggler.id == 'kiadvanylogoesarculattervezes') {
				document.getElementById('info').style.backgroundPosition = '-342px 0';
			}
		},
		onBackground: function(toggler){
			toggler.$tmp.fx.stop();
			toggler.setStyle('background-color', toggler.color).$tmp.first.setStyle('color', '#3a3a3a');
			toggler.setStyle('background-image', 'url(/images/arrow.gif)')
		}
	});
	var found = 0;
	$$('h3.toggler a').each(function(link, i){
		if (window.location.hash.test(link.hash)) found = i;
	});
	myAccordion.display(found);
});