window.addEvent('domready', function() {
		//	$('pubblicazioni').setStyle('cursor', 'pointer');
	
	
	

	
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		display:false,
		show:false,
		opacity: false,
		alwaysHide:true,
		onActive: function(toggler, element){
			//toggler.setStyle('color', '#41464D');
			//toggler.setStyle('cursor', 'pointer');
		},
		onBackground: function(toggler, element){
			//toggler.setStyle('color', '#528CE0');
			//toggler.setStyle('cursor', 'pointer');
		}
	});

	$('pubblicazioni').addEvent('click', function(event) {
		var x = $('extender');
		if (x.getStyle('height').toInt()==250) {
			x.tween('height', [250, 320]);
		} else {
			x.tween('height', [320, 250]);
		}	
	});
		
	
});
