window.addEvent('domready', function() {

$$('div#content_main h2 a').addEvent('click', function(){
    if($('content_main').getStyle('height').toInt() <= 60) {
        $('content_main').set('morph', { onComplete: function(){ $$('#content_main p').setStyle('display', 'block');} })
        $('content_main').morph({height: 400});
        this.setStyle('background', 'url(/images/down.gif) no-repeat center right');
    }
    else {
        $('content_main').set('morph', { onComplete: function(){ } })
        $('content_main').morph({height: 60});
        $$('#content_main p').setStyle('display', 'none');
        this.setStyle('background', 'url(/images/up.gif) no-repeat center right');
    }
    })
    
   
// Chiusura del DOMREADY
});
