window.addEvent('domready', function() {

	var myAccordion = new Accordion($('affitti_list'), 'a.toggler', 'div.element', {opacity: true});

	if ($('main_info')){
		$('main_info').set('morph', { duration: 300, onComplete: function(){aperto=!aperto} })
	var aperto = true;
	var altezza = $('main_info').getStyle('height').toInt();

	$$('.closeBox').addEvent('click', function(){
    if(aperto) {
        $('main_info').morph({'height': 20, 'overflow': 'hidden', 'padding-bottom': 0});    
        this.className = 'openBox';
    }
    else {
        $('main_info').morph({'height': altezza, 'padding-bottom': '25px'});    
        this.className = 'closeBox';
        }
	})
	};

    
// Chiusura del DOMREADY
});