function random_bg() {
    bgnum = Math.round(Math.random() * 8) + 1;
    document.body.style.backgroundImage ="url(../image/bg/" + bgnum + ".jpg)";
}

