/*Element.observe(document, 'dom:loaded', function() {
	
	$('choice_l').hide();
	
	$('lang_choice').observe('click', function(event) {
	
		if($('choice_l').visible())
		{
			new Effect.SlideUp('choice_l', { duration: 0.5 }); 
		}
		else
		{
			new Effect.SlideDown('choice_l', { duration: 0.5 }); 
		}
	});
	
});*/
