function init(){
		
	//accordion effect
/*		var myAccordion = new fx.Accordion(
		toggles, stretchers, {opacity: true, height: true, duration: 400}
	);
*/
	var accordion = new Accordion('h3.kop', 'div.tekst', {
		opacity: true,
		height: true,
		width: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#33BCCD');
		},
	 
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#000');
		}

	}, $('accordion'));
	
}
