	window.addEvent('domready', function() {
		new Rokmoomenu($E('ul.nav'), {
			bgiframe: false,
			delay: 500,
			animate: {
				props: ['opacity', 'width', 'height'],
				opts: {
					duration:800,
					fps: 100,
					transition: Fx.Transitions.Expo.easeOut
				}
			}
		});

		var accordion = new Accordion('a.atStart', 'div.atStart', {
			opacity: false,
			alwaysHide: true,
			show: (-1)
		}, $('accordion'));

		var accordion2 = new Accordion('a.atStart2', 'div.atStart2', {
			opacity: false,
			duration:200,
			alwaysHide: true,
			show: (-1)
		}, $('accordion2'));

	});