function init () { initGeneral(); resizeBoxesWithBG(); window.onresize = resizeBoxesWithBG; } function resizeBoxesWithBG() { resizeBoxes(); // On ajuste la position du background de sidebar pour quil monte jusqu'en dessous // des spéciaux. var menubarHeight = document.getElementById('menubar').offsetHeight; var sidebarExtrasHeight = document.getElementById('sidebarExtrasContainer').offsetHeight; document.getElementById('sidebar').style.backgroundPosition = "0px " + (parseInt(menubarHeight) + parseInt(sidebarExtrasHeight)+7) + "px"; }