window.addEvent('domready', function() {

// ACCORDION
	
	var lang = Cookie.read('mle');

	var accordion = new Accordion($('quicklinks'), 'img.toggler', 'div.toggler', {
		display: false,
		opacity: false,
		alwaysHide: true,
		onActive: function(toggler, element){
			toggler.set('src', '/images/btn_quicklinks_close_' + lang + '.gif');
		},
		onBackground: function(toggler, element){
			toggler.set('src', '/images/btn_quicklinks_open_' + lang + '.gif');
		}
	});
	
	if (typeof status_open != "undefined") accordion.display(0);


// SELECTBOXES

	var selectbox = new SimpleSelectStyle({select_class: 'select_group', left_padding : 5});


// FONT-SIZE
	
	var target = $$('#content p', '#content li', '#footer li');
	
	var cur_size = Cookie.read('fontsize');
	
	target.setStyle('font-size', cur_size);
	
	var fSmall = '11px';
	var fNormal = '13px';
	var fLarge = '15px';
	
	$('fSmall').addEvent('click', function(){
		target.set('morph').morph({'font-size': fSmall});
		Cookie.write('fontsize', fSmall);
	});
	
	$('fNormal').addEvent('click', function(){
		target.set('morph').morph({'font-size': fNormal});
		Cookie.write('fontsize', fNormal);
	});
	
	$('fLarge').addEvent('click', function(){
		target.set('morph').morph({'font-size': fLarge});
		Cookie.write('fontsize', fLarge);
	});

});
