$(document).ready(function(){

    //-- Gestione dell'immagine home animata --//

    eHome = $('#home');
    eHomeImg = $('#home img');

    eHome.mouseover(function(){
        eHomeImg.animate({
            marginTop: '0px'
        }, {
            queue: false,
            duration: 200
        });
    });
    eHome.mouseout(function(){
        eHomeImg.animate({
            marginTop: '13px'
        }, {
            queue: false,
            duration: 200
        });
    });

});
