const NUM_BG=15;var image=document.getElementById("background");var num=image.src.charAt(image.src.lastIndexOf("-")+1);function prev(){if(num==1){num=NUM_BG}else{num--}set_src(num);return false}function next(){if(num==NUM_BG){num=1}else{num++}set_src(num);return false}function set_src(A){var B=image.src.substring(image.src.lastIndexOf("."),image.src.length);var C=image.src.substring(0,image.src.lastIndexOf("-"));image.src=C+"-"+A+B}addEventListener("load",function(){setTimeout(updateLayout,0)},false);var currentWidth=0;function updateLayout(){if(window.innerWidth!=currentWidth){currentWidth=window.innerWidth;var A=currentWidth==320?"profile":"landscape";document.body.setAttribute("orient",A);setTimeout(function(){window.scrollTo(0,1)},100)}}setInterval(updateLayout,400);window.onload=function(){setTimeout(function(){window.scrollTo(0,1)},100)};