window.addEvent('domready', function() {

    if ($('photogallery')) {
        $('photogallery').set('morph', {
            onComplete: function() {
                if ($('photogallery').getStyle('height').toInt() > 0)
                    $('gallery-head').className = '';
                else
                    $('gallery-head').className = 'closed';
            }
        });
        $('gallery-head').addEvent('click', function() {
            if ($('photogallery').getStyle('height').toInt() > 0) {
                $('photogallery').morph({
                    'height': '0',
                    'top': '282'
                });
            }
            else {
                $('photogallery').morph({
                    'height': '282',
                    'top': '0'
                });
            }
        });
    }


    $$('ul#menuHomepage li').addEvent('mouseenter', function() {
    this.morph({
        'width': '270',
        'padding':'0 15px 0 55px'
    });
});
    $$('ul#menuHomepage li').addEvent('mouseleave', function() {
    this.morph({
        'width': '0',
        'padding':'0 0 0 40px'
    });
});




    // Chiusura del DOMREADY
});
