$(function() {
    var navButtons = '#accueil1, #chambres, #galerie, #services, #reservation, #contact';
    $(navButtons).hover(function() {
        $(this).stop().animate({'top':'-111px'});
        }, function () {
        $(this).stop().animate({'top':'0px'})
        });
});
