// JavaScript Document
function randBG(){
	o = document.getElementById("body");
	o.style.backgroundImage = ("url(background/bg"+(Math.floor(Math.random()*14)+1)+".jpg)");
}