$(function() {
    var navButtons = '#camere, #ristorante, #nozze, #congressi, #bene, #dovesiamo';
    $(navButtons).hover(function() {
        $(this).stop().animate({'top':'-140px'});
        }, function () {
        $(this).stop().animate({'top':'0px'})
        });
});
