$(document).ready(function() {
var randombgs = ["/images/bg-1.jpg", "/images/bg-2.jpg", "/images/bg-3.jpg", "/images/bg-4.jpg"];
var bg = randombgs[Math.floor(Math.random() * randombgs.length)];
document.body.style.background = '#000000 url('+bg+')';
});


