//Adds a class to the body tag
function BgChanger(Items)
{
    var num = Math.floor(Math.random() * Items.length);
    document.body.className += " " + Items[num];
}
