function setFooterPosition() {
    var h = $(window).height();
    var loc = document.location.href;
    if (loc.search("jeu") > 0) {
        if (h < 805) h = 805;
    } else {
        if (h < 770) h = 770;
    }
    $('#nav').css('margin-top', (h-160)+'px');
    $('#footer').css('margin-top', (h-60)+'px');
}

$(document).ready(function () {
    $("html").css("overflow-x", "hidden");
    $("#main").css("z-index", 1);

    setFooterPosition();
    
    var h = $(window).width();
    $('.logo').css('left', ($('#main').position().left-485)+'px');
    
    $(window).resize(function() {
        setFooterPosition();
        var h = $(window).width();
        $('.logo').css('left', ($('#main').position().left-485)+'px');
    });

});
